Skip to content

Instantly share code, notes, and snippets.

@larister
Created February 17, 2014 16:38
Show Gist options
  • Save larister/9054082 to your computer and use it in GitHub Desktop.
Save larister/9054082 to your computer and use it in GitHub Desktop.
marks
export MARKPATH=$HOME/.marks
function leap {
cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
}
function mark {
mkdir -p "$MARKPATH"; ln -s "$(pwd)" "$MARKPATH/$1"
}
function unmark {
rm -i "$MARKPATH/$1"
}
function marks {
ls -l "$MARKPATH" | gsed 's/ / /g' | cut -d' ' -f9- | gsed 's/ -/\t-/g' && echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment