my humble opinion http://dml.org.ua Most recent posts at my humble opinion posterous.com Fri, 18 Mar 2011 12:59:00 -0700 small trick for bash http://dml.org.ua/post/3938278658 http://dml.org.ua/post/3938278658

If you want to remember last working directory you can add this into .bashrc

# cdp() will create or rewrite file ~/.cwd with working path
cdp()
{
  cd "$1"
  echo `pwd` > ~/.cwd
}

# exporting cdp() to shell as a command
export -f cdp

# changing working directory if file exists
if [ -d `cat ~/.cwd` ]; then
  cd `cat ~/.cwd`
fi

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1096821/MY_AVATAR.PNG http://posterous.com/users/heO94g89a8qL0 Dmitry Larkin dml Dmitry Larkin