-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbashrc
56 lines (51 loc) · 1.51 KB
/
bashrc
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
export HISTFILESIZE=20000
export HISTSIZE=10000
shopt -s histappend
shopt -s cmdhist
HISTCONTROL=ignoredups
export HISTIGNORE="&:ls[bf]g:exit"
# Aliases
alias gl="git log --oneline"
alias myip="curl http://ipecho.net/plain; echo"
alias pull-rc="git -C ~/.rc pull --recurse-submodules && . ~/.bashrc"
alias vimrc="vim ~/rc/.bashrc; . ~/rc/.bashrc"
# Functions
function up() {
for x in $(seq 1 $1); do
cd ..
done
}
function ssht () {
/usr/bin/ssh $@ -t "tmux attach -t base || tmux new -s base";
}
function extract() {
if [ -z "$1" ]; then
echo "Usage: extract <path/file_name.<zip|rar|bz2|gz|tar|tbz2|tgz|Z|7z|xz|ex|tar.bz2|tar.gz|tar.xz>"
else
if [ -f "$1" ]; then
case $1 in
*.tar.bz2) tar xvjf ../$1 ;;
*.tar.gz) tar xvzf ../$1 ;;
*.tar.xz) tar xvJf ../$1 ;;
*.lzma) unlzma ../$1 ;;
*.bz2) bunzip2 ../$1 ;;
*.rar) unrar x -ad ../$1 ;;
*.gz) gunzip ../$1 ;;
*.tar) tar xvf ../$1 ;;
*.tbz2) tar xvjf ../$1 ;;
*.tgz) tar xvzf ../$1 ;;
*.zip) unzip ../$1 ;;
*.Z) uncompress ../$1 ;;
*.7z) 7z x ../$1 ;;
*.xz) unxz ../$1 ;;
*.exe) cabextract ../$1 ;;
*) echo "extract: '$1' - unknown archive method" ;;
esac
else
echo "$1 - file does not exist"
fi
fi
}
if { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
PS1="\w "
fi