Skip to content

Instantly share code, notes, and snippets.

@subdavis
Last active June 29, 2016 16:17
Show Gist options
  • Save subdavis/35098dee30b914a3f5f788cfc69f7b4e to your computer and use it in GitHub Desktop.
Save subdavis/35098dee30b914a3f5f788cfc69f7b4e to your computer and use it in GitHub Desktop.
ssh-start() {
eval `ssh-agent -s`
}
ssh-addkeys() {
for f in ~/.ssh/*_rsa
do
ssh-add "$f"
done
}
pysrc() {
source bin/activate
}
pywinsrc() {
source Scripts/activate
}
..(){
cd ../
}
.2() {
cd ../../
}
.3() {
cd ../../../
}
cd..() {
cd ../
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment