Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh -e
- for html in $(find d -name '*.html' | sort); do
- dir=$(basename $(dirname ${html}))
- file=$(basename ${html})
- echo ${dir}/${file}
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement