Advertisement
Guest User

Untitled

a guest
May 3rd, 2013
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. bash-4.2$ hexdump -C beep.tcl
  2. 00000000 07 |.|
  3. 00000001
  4.  
  5. bash-4.2$ cat beep.tcl # beep once
  6.  
  7. bash-4.2$ tclsh beep.tcl # beep once
  8. invalid command name ""
  9. while executing
  10. ""
  11. (file "beep.tcl" line 1)
  12.  
  13. bash-4.2$ hexdump -C beep+.tcl
  14. 00000000 70 72 6f 63 20 5c 30 30 37 20 7b 7d 20 7b 7d 0a |proc \007 {} {}.|
  15. 00000010 07 |.|
  16. 00000011
  17.  
  18. bash-4.2$ cat beep+.tcl # beep once
  19. proc \007 {} {}
  20.  
  21. bash-4.2$ tclsh beep+.tcl # no beep
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement