Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. printf 'e[3;0;0t' # move
  4. printf 'e[8;35;61' # resize
  5. tail -f ~/Library/Logs/Aaron/logfile--[default].txt # open log file
  6.  
  7. #!/bin/bash
  8.  
  9. printf 'e[3;681;0t' # move
  10. printf 'e[8;35;61t' # resize
  11. open -a Terminal.app scripts/view_log.sh # open log file in new window
  12. printf 'e[5t' # request focus
  13.  
  14. /Users/aaron/code/c/game2/scripts/view_log.sh ; exit;
  15.  
  16. bash
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement