Skip to content

Instantly share code, notes, and snippets.

@hrkrshnn
Created January 2, 2016 04:21
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 hrkrshnn/196a9e211be7480d2c79 to your computer and use it in GitHub Desktop.
Save hrkrshnn/196a9e211be7480d2c79 to your computer and use it in GitHub Desktop.
Manages pdfs
# Create directories
for char in {A..Z}; do
mkdir -p $char
done
# Move file according to Alphabetical order
for char in {A..Z}; do
mv $char*.pdf $char
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment