-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_aliases
36 lines (27 loc) · 1.17 KB
/
.bash_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Common Aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias goh='cd /home/sporty/go/src/bitbucket.org/tsitnikov'
alias chatt='ssh [email protected]'
alias om='cd ~/go/src/bitbucket.org/tsitnikov/open-medicine/'
alias maria='ssh [email protected]'
# Staging Machine login
alias stg="ssh [email protected]"
alias prod="ssh [email protected]"
# Debud
alias uart="picocom -b 115200 --imap crcrlf /dev/ttyUSB0"
alias runfw="reset && progv2.sh && picocom -b 115200 --imap crcrlf /dev/ttyUSB0"
alias fw="cd ~/HydroGuardFW/hw_1_5"
alias os="cd ~/HydroGuardFW/hg_os"
alias demo="cd ~/demo"
alias isrs="cd ~/work/c1202-srs-web_app/ && nvim SystemInterfaceV2.md"
alias hw="cd ~/cs6340/hw8/constraints"
alias us="ssh -X -l sporty -p 2222 localhost"
alias subs="VBoxManage startvm Arch --type headless"
alias pico="picocom -b 115200 --imap crcrlf /dev/ttyUSB0"
#=============[ Disable / Enable touch pad ]==================================
alias tpoff='synclient TouchpadOff=1'
alias tpon='synclient TouchpadOff=0'
alias weather='curl http://wttr.in/chattanooga'
alias tmux="env TERM=xterm-256color tmux"