Last active
October 1, 2015 01:23
-
-
Save blakewrege/477a70ad9332ce84e511 to your computer and use it in GitHub Desktop.
bash aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ,edit-alias='nano .bashrc' | |
alias ,processes='ps -u gigglesbw4' | |
alias ,webcam2="scp [email protected]:~/misc/image.jpg /home/members/gigglesbw4/www" | |
alias ,webcam="scp [email protected]:/tmp/cclub/webcam.jpg /home/members/gigglesbw4/www" | |
alias shrek='ssh shrek.dhcp.io -l cclub' | |
alias millenniumfalcon='ssh shrek.dhcp.io -p 9000 -l cclub' | |
alias uglyduck='ssh shrek.dhcp.io -p 9010 -l administrator' | |
alias ralph='ssh shrek.dhcp.io -p 9030 -l cclub' | |
alias cloudcanary='ssh t4ls.duckdns.org -l cclub' | |
alias blakepi='ssh [email protected] -p 9100' | |
alias cflock='ssh shrek.dhcp.io -p 5022 -l cclub' | |
alias vulnerablevulture='ssh shrek.dhcp.io -p 6022 -l cclub' | |
function lazygit() { | |
git add . | |
git commit -a -m "$1" | |
git push | |
} | |
function forcepull() { | |
git fetch --all | |
git reset --hard origin/master | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment