Created
January 2, 2016 04:21
-
-
Save hrkrshnn/196a9e211be7480d2c79 to your computer and use it in GitHub Desktop.
Manages pdfs
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
# 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