Advertisement
Guest User

An idea?

a guest
Jun 13th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. if [ "$#" -gt 0 ]; then
  2.     if [[ "$1" == *".pdf" ]]; then
  3.         # got pdf file
  4.         evince "$1"
  5.     else
  6.         eval "$@"
  7.     fi
  8. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement