Skip to content

Instantly share code, notes, and snippets.

@hornc
Created June 1, 2023 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hornc/a83926c208329b1e6370d1fbf6dbfdbe to your computer and use it in GitHub Desktop.
Save hornc/a83926c208329b1e6370d1fbf6dbfdbe to your computer and use it in GitHub Desktop.
Rename images to correctly sort them, and make a pdf
# Install reqs
sudo apt install rename
# Test rename command:
rename -n 's/(\d+)(?=.*\.)/sprintf("%03d",$1)/eg' *.jpg
# Bash commands to 0 pad (to 3 digits) numbers in .jpg filenames
rename 's/(\d+)(?=.*\.)/sprintf("%03d",$1)/eg' *.jpg
# Convert now ordered images to pdf
img2pdf *.jp* --output "${PWD}.pdf"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment