Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #!/usr/bin/bash
  2. terminal=/usr/bin/termite
  3.  
  4. if [ "$#" -eq 0 ]; then
  5. exec $terminal -d $PWD
  6. else
  7. exec $terminal -d $PWD -e "${*:2}"
  8. fi
Add Comment
Please, Sign In to add comment