-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal_bashrc.txt
98 lines (80 loc) · 3.52 KB
/
local_bashrc.txt
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#. ~/.bash_prompt
############################## HELPER FUNCTIONS ################################
############################## HELPER FUNCTIONS ################################
LS_COLORS=$LS_COLORS:'di=0;35:' ; export LS_COLORS
export PAGER="most"
TERM=xterm-256color
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
PS1='\w\$ '
ranger-cd() {
tmp=$(mktemp)
ranger --choosedir="$tmp" "$@"
[ -f $tmp ] && cd "$(cat $tmp)"
rm -f $tmp
}
alias r='ranger-cd'
# for custom scripts to be used anywhere
export PATH=$PATH:$HOME/Scripts/
############################## HELPER FUNCTIONS ################################
############################## HELPER FUNCTIONS ################################
################################ GOOGLE COLAB ##################################
################################ GOOGLE COLAB ##################################
function j1 () { # step 1, terminal A
ssh -vXY -L 51542:127.0.0.1:51542 [email protected]
}
function j2 () { # step 2, terminal B
}
################################ GOOGLE COLAB ##################################
################################ GOOGLE COLAB ##################################
################################## OSX FUSE ####################################
################################## OSX FUSE ####################################
# mount to base
function mo2 () { # mount
sshfs\
[email protected]:/n/groups/churchman/dmm57/COLAB/\
/Users/dylanmarshall/Desktop/OSX_FUSE_PH/COLAB/
echo ' ... entering O2 CoLab code base ... '
cd /Users/dylanmarshall/Desktop/OSX_FUSE_PH/COLAB/
atom .
}
# unmount from base
function umo2 () { # unmount
umount -f /Users/dylanmarshall/Desktop/OSX_FUSE_PH/COLAB/
echo ' ... leaving O2 CoLab code base ... '
cd ~
}
################################## OSX FUSE ####################################
################################## OSX FUSE ####################################
################################## ALIASES #####################################
################################## ALIASES #####################################
alias dl='cs ~/Desktop/deepLearning' # go to deep learning stuffs
alias ls='ls -p' # my default for examining directories
alias ll='ls -lahp' # list lexicographically, full
alias lS='ls -lahrSp' # list by increasing size, full
alias del='rm -i' # safe remove
alias t='tmux' # shortcut to terminal multiplexer
alias p='python' # shortcut to python
alias p3='python3' # shortcut to python3
alias f='cs ~/Desktop/FIDDLE/' # go to FIDDLE directory
alias j='jupyter notebook' # activate jupyter notebook
alias pg='cs ~/Desktop/pythonPG/' # go to python playground
alias n='cs ~/Desktop/pythonPG/notebooks/' # go to notebooks/labs directory
alias st='speedtest-cli' # command line internet speedtest
# o2 orchestra
alias o2='ssh [email protected]' # shortcut to o2 orchestra
################################## ALIASES #####################################
################################## ALIASES #####################################
############################### BASIC FUNCTIONS ################################
############################### BASIC FUNCTIONS ################################
function cs () {
cd "$@" && ls -la # cs = cd + ls
}
function cl () {
clear "$@" && ls # shortcut to clear page and list screen
}
############################### BASIC FUNCTIONS ################################
############################### BASIC FUNCTIONS ################################