Here’s a clever bash alias for quick string url- encoding/decoding:
http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
Here’s a clever bash alias for quick string url- encoding/decoding:
http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
I recently have had some trouble getting the flash debug player to work properly on the macbook. I found this cool idea about creating aliasses that appends the flash player output to the flashlog.txt text file.
$ alias trace=tail\ -f\ "/Users/<username>/Library/Preferences/Macromedia/Flash\ Player/Logs/flashlog.txt"
and, using rm to clear the text file:
$ alias cleartrace=rm\ -f\ "/Users/<username>/Library/Preferences/Macromedia/Flash\ Player/Logs/flashlog.txt"
See the original post and comment here: