Posts tagged with bash

Virtualenv Wrapper Helper

March 28th, 2009

A bit inspired by all the awesome stuff happening at PyCon, I've done a bit of hacking on my shell to improve the use of virtualenv_wrapper. Remembering to checkout the ...

NameError: global name 'log' is not defined

March 22nd, 2009

I've spent a portion of this evening trying to get caught up with the crazy amounts of development that have been going on with the oebfare blogging engine over the ...

Speedy Google-Code Checkout

September 22nd, 2008

Here's a handy bash shortcut for automatically checking out a google-code project. # SVN ALIASES export GOOGLE_CODE_CHECKOUTS="$HOME/Code/trunks" gcco () { svn checkout http://$@.googlecode.com/svn/trunk/ $GOOGLE_CODE_CHECKOUTS/$@ } Update: You should use $HOME ...

Bash: Your forgotten friend (part 3)

August 25th, 2008

For the final installment of Bash: Your forgotten friend (see: part 1 and part 2), I'll be going over the functions I use to make life easy. For those unfamiliar, ...

Bash: Your forgotten friend (part 2)

August 20th, 2008

Aliases are one of the core portions of Bash that will help you become more productive almost immediately. The speed at which aliases can be defined is astounding. <!--more--> To ...

Bash: Your forgotten friend (part 1)

August 14th, 2008

In the name of meta-productivity, or improving productivity by improving process, I've come to learn and love Bash. For those who aren't familiar, Bash is the "scary" black terminal in ...