Guest User

Untitled

a guest
Apr 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Usage: fox page1.html [page2.html pageN.html]
  4.  
  5. if [ $# -eq 0 ]
  6. then
  7. echo "must specify a file"
  8. else
  9. for page in $@
  10. do
  11. open -a Firefox ${page}
  12. done
  13. fi
Add Comment
Please, Sign In to add comment