Skip to content

Instantly share code, notes, and snippets.

@tomnomnom
Created June 7, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tomnomnom/d7ca3289b402602c69ccdbdf5a00e551 to your computer and use it in GitHub Desktop.
Save tomnomnom/d7ca3289b402602c69ccdbdf5a00e551 to your computer and use it in GitHub Desktop.
presentations.sh
#!/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