At work I use intensively SVN with my coworker gnuvince. We also use MSN to notify each other of updates we've made. With time our communications became more and more pragmatics, to the point where we'd only say to each other "up", of course referring to the "svn up" command.
Except one day. This day his fingers were offset, he typed "yo". This incident led to a inside joke, which eventually led to those two little scripts.
I found myself typing the same commands over and over, so why not just put them in a bash script ?
Should have done it long time ago. Ok it could be more advanced, but it works and suits my basic needs and save me some time and typing.
#!/bin/bash
svn up
find . -iname '*.pyc' -type f -print0 | xargs -0 /bin/rm -f
svn log -rHEAD
svn status
#!/bin/bash
yo
svn commit
no comments :|