Last active
May 12, 2019 06:28
-
-
Save LeiHao0/8cec84937696d33718133f93712a45a5 to your computer and use it in GitHub Desktop.
image2pdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for d in */; | |
| do | |
| cd "$d" | |
| convert *.* tmp.pdf | |
| name=$(echo "$d" | cut -d '/' -f1).pdf | |
| mv tmp.pdf "../$name" | |
| cd - | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment