Skip to content

Instantly share code, notes, and snippets.

@lotka
Created January 4, 2016 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lotka/de33a0cb846204aa6bb8 to your computer and use it in GitHub Desktop.
Save lotka/de33a0cb846204aa6bb8 to your computer and use it in GitHub Desktop.
Set a favourite directory
# Store the location of your favourite directory
alias fa='echo $(echo $(pwd) | sed "s:^$HOME:~:") > ~/Dropbox/.lastWorkDir'
# Go to your favourite directory
alias f='cd $(cat ~/Dropbox/.lastWorkDir | sed "s:^~:$HOME:")'
# Sed is used to make this work on all the computers I use
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment