Skip to content

Instantly share code, notes, and snippets.

@LeiHao0
Last active May 12, 2019 06:28
Show Gist options
  • Select an option

  • Save LeiHao0/8cec84937696d33718133f93712a45a5 to your computer and use it in GitHub Desktop.

Select an option

Save LeiHao0/8cec84937696d33718133f93712a45a5 to your computer and use it in GitHub Desktop.
image2pdf
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