Tag Archives: command line

svn: show commits for particular user

svn log | sed -n ‘/pxg/,/—–$/ p’
The above code will show all entries in the log for the user pete.

Linux: List files by time

ls -lt
Or you can flip reverse it:
ls -ltr

Linux: pwd show real location (not symlink)

pwd -P
Use the physical flag luke!

OS X: Stop MySQL

sudo /Library/StartupItems/MySQLCOM/MySQL stop

OS X: Remove 3D Dock

defaults write com.apple.dock no-glass -boolean YES; killall Dock