Created
June 7, 2019 09:01
-
-
Save tomnomnom/d7ca3289b402602c69ccdbdf5a00e551 to your computer and use it in GitHub Desktop.
presentations.sh
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
#!/bin/bash | |
dir=$1 | |
if [ ! -d "$dir" ]; then | |
echo "no dir" | |
exit | |
fi | |
find "$dir" -type f -name "*.pdf" | sort | while read file; do | |
evince -s "$file" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment