forked from DanielFGray/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_aliases
541 lines (488 loc) · 12.4 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
#!/usr/bin/env bash
export MANPAGER="bash -c \"col -b | vim -Nu NONE -c 'runtime macros/less.vim' -c 'setf man' -\""
export EDITOR='vim'
export HISTFILESIZE=500000
export HISTSIZE=100000
unset GREP_OPTIONS
stty -ixon
for bu in "${HOME}/.bash_utils" "${HOME}/dotfiles/bash_utils"; do
if [[ -s "$bu" ]]; then
. "$bu"
break
fi
done
[[ -s "$bu" ]] || {
err() { tput setaf 1; printf '%s\n' "$@"; tput sgr0; }
err 'cannot source bash_utils' 'probably gonna die now'
}
unset d
has fortune && fortune -ae
if h=$(select_from apt 'apt-get'); then
alias canhaz="sudo $h install "
alias updupg="sudo $h upgrade "
pkgrm() { sudo apt-get purge "$@" && sudo apt-get autoremove ;}
has fuser dpkg && alias unlock-dpkg="sudo fuser -vki /var/lib/dpkg/lock; sudo dpkg --configure -a"
elif h=$(select_from trizen pacaur yaourt pacman); then
[[ $h = pacman ]] && h="sudo pacman"
alias canhaz="$h -S "
updupg() {
$h -Sy && if has pkgup; then
pkgup
else
$h -Syu
fi
}
has pkgrm || alias pkgrm='sudo pacman -Rsu '
elif [[ -f /etc/redhat-release ]]; then
alias canhaz='sudo dnf install '
elif [[ -f /etc/gentoo-release ]]; then
alias canhaz='sudo emerge -av '
fi
unset h
alias ..='cd ..'
alias ...='cd ../..'
alias cp='cp -v '
alias mv='mv -v '
alias rm='rm -v '
alias ln='ln -v '
alias curl='curl -v '
alias chown='chown -v '
alias chmod='chmod -v '
alias rename='rename -v '
alias ls='ls -Fh --color --group-directories-first '
alias l='ls -lgo '
alias lt='l -t '
alias lx='l -X '
alias la='l -A '
alias lax='la -X '
alias lat='la -t '
grep --version | grep -q 'gnu' && alias grep='grep --exclude-dir={.bzr,CVS,.git,.hg,.svn,node_modules,bower_components,jspm_packages} --color=auto -P '
alias historygrep='history | command grep -vF "history" | grep '
alias shuf1='shuf -n1'
vba() {
$EDITOR ~/dotfiles/bash_aliases
source ~/dotfiles/bash_aliases
}
has cdu && alias cdu='cdu -isdhD '
has rsync && alias rsync='rsync -v --progress --stats '
has lein && alias lein='rlwrap lein '
has pkgsearch && alias pkgs='FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --reverse --preview-window=bottom:hidden" pkgsearch '
has pip && alias pipi='pip install --user --upgrade '
has ptpython && alias ptpy='ptpython'
# {{{ git aliases
if has git; then
alias g='git '
alias ga='git add '
alias gap='git add -p '
alias gb='git branch '
alias gc='git commit -v '
alias gcm='git commit -m '
alias gco='git checkout '
alias gd='git diff '
alias gl='git pull '
alias gm='git merge --no-ff '
alias gp='git push '
alias gst='git status --untracked-files=no '
alias gstu='git status -u '
gcl() {
local dir repo
if [[ -z "$1" ]]; then
echo 'no arguments specified'
return 1
fi
case "$1" in
http*|https*|git*|ssh*) repo="$1" ;;
*) repo="https://github.com/$1" ;;
esac
shift
if [[ -n "$1" && "$1" != -* ]]; then
dir="$1"
shift
else
dir="${repo##*/}"
dir="${dir/%.git}"
fi
git clone "$repo" "$@"
[[ -d "$dir" ]] && cd "$dir"
}
gsb() {
if [[ -z "$1" ]]; then
err 'No branch name specified'
return 1
fi
git stash
git stash branch "$1"
}
fi
# }}}
cd() {
local dir
if [[ -z "$*" ]]; then
builtin cd ~ && ls
else
dir="$1"
shift
builtin cd "$dir" && ls "$@"
fi
}
delete_empty() {
while [[ -n $(find -empty) ]]; do
find -empty -delete
done
}
mkd() {
mkdir -vp "$*" && cd "$*"
}
trash() {
for arg in "$@"; do
[[ "$arg" = -* ]] && shift
done
mkdir -vp ~/.trash
mv -vt ~/.trash "$@"
}
cat() {
if [[ -t 1 ]]; then
more "$@" | LESS=-~FEXR less
else
command cat "$@"
fi
}
help() {
bash -c "help $*"
}
bground() {
("$@" &> /dev/null &)
}
restart() {
pkill -x "$1"
bground "$@"
}
function in {
local t
t=( "$1" "$2" )
shift 2
at now + "${t[@]}" <<< "$*"
}
decide() {
local args
args=( "$@" )
(( $# < 2 )) && args=( yes no )
printf '%s\n' "${args[@]}" | shuf -n1
}
ed() { command ed -p: "$@" ;} # https://sanctum.geek.nz/arabesque/actually-using-ed/
if has tmux; then
txs() {
local nested opts
opts=( -d )
for a in "$@"; do
case $a in
-N) nested=1 ; shift ;;
-*) opts+=( "$1" ) ; shift ;;
esac
done
cmd="$*"
if [[ -n "$nested" ]]; then
cmd="TMUX='' tmux new \; source ~/dotfiles/tmux.alt.conf \; send-keys ' $cmd' C-m"
fi
tmux split-window "${opts[@]}" "$cmd"
}
has gitup && upglibs() {
txs "gitup -F -p8 ~/.oh-my-zsh ~/.zsh/plugins ~/.vim/bundle ~/.emacs.d ~/.fzf ~/.tmux/plugins; bash -c 'read -r -p \"Done! Press any key to close.\" -n1'"
}
fi
sprunge() { more -- "$@" | command curl -sF 'sprunge=<-' http://sprunge.us ;}
pgrep() { ps aux | command grep -iP "$*" | command grep -ivF grep ;}
has tar ssh && {
if has pv; then
tarpipe() { tar czf - "$2" | pv | ssh "$1" "tar xzvf - $3" ;}
rtarpipe() { ssh $1 "tar czf - $2" | pv | tar xzvf - ;}
else
tarpipe() { tar czf - "$2" | ssh "$1" "tar xzvf - $3" ;}
rtarpipe() { ssh $1 "tar czf - $2" | tar xzvf - ;}
fi
}
textImage() {
convert -background white -fill black -size 500x500 -gravity Center -font Droid-Sans-Regular caption:"$1" "$2" &&
optipng "$2" &&
qiv "$2"
}
burnusb() {
sudo dd if="$1" of="$2" bs=4M conv=sync status=progress
sync
ding 'burnusb' 'done'
}
changeroot() {
emulate -L bash
sudo cp -L /etc/resolv.conf "$1"/etc/resolv.conf
sudo mount -t proc proc "$1"/proc
sudo mount -t sysfs sys "$1"/sys
# sudo mount -o bind /dev "$1"/dev
# sudo mount -t devpts pts "$1"/dev/pts/
sudo chroot "$1"/ /bin/bash
ask "unmount $1? " && (
sudo umount -l "$1"
sudo chroot /
)
emulate -L zsh
}
extract() {
if [[ -f "$1" ]]; then
case "$1" in
*.tar.bz2) tar xvjf "$1" ;;
*.tar.gz) tar xvzf "$1" ;;
*.bz2) bunzip2 "$1" ;;
*.rar) unrar x "$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" ;;
*) echo "'$1' cannot be extracted via >extract<" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
curltar() {
local d
d="${1%%*/}"
mkdir -v "$d" || return 1
cd "$d" || return 1
case "$1" in
*.tar.bz2) command curl -L "$1" | tar xvjf - ;;
*.tar.gz) command curl -L "$1" | tar xvzf - ;;
*.bz2) command curl -L "$1" | bunzip2 - ;;
*.tar) command curl -L "$1" | tar xvf - ;;
*.tbz2) command curl -L "$1" | tar xvjf - ;;
*.tgz) command curl -L "$1" | tar xvzf - ;;
*) command curl -LO "$1"
esac
}
whitenoise() { aplay -c 2 -f S16_LE -r 44100 /dev/urandom ;}
weather() { command curl -s http://wttr.in/"${*:-galveston texas}" ;}
if has synclient vipe; then
synclient() {
if command synclient -l &> /dev/null; then
if (( $# > 0 )); then
command synclient "$@"
else
command synclient $(command synclient | vipe | sed '1d;s/ //g')
fi
else
command synclient
fi
}
fi
if has fzf; then
umnt() {
local device
device=$(mount -l | awk '
$5 !~ /gvfsd|debugfs|hugetlbfs|mqueue|tracefs|devpts|securityfs|pstore|sysfs|proc|autofs|cgroup|fusect|tmpfs/ {
print $1, $3, $5, $6
}' |
column -t |
fzf --inline-info --reverse --height=50% |
awk '{print $2}')
[[ -n "$device" ]] && sudo umount -l "$device"
}
has npm npmsearch && alias npms='npmsearch '
has npm npmuninstall && alias npmun='npmuninstall '
fi
loadnvm() {
if [[ -s "/home/dan/.nvm/nvm.sh" ]] && ! has nvm; then
echo 'loading nvm...'
export NVM_DIR="$HOME/.nvm"
[[ -s "$NVM_DIR/nvm.sh" ]] && source "$NVM_DIR/nvm.sh" --no-use
nvmuse() {
local version
version=$(unalias curl; nvm ls | fzf --inline-info --ansi --height=10 --reverse | grep -oP '(system|(iojs-)?v\d+\.\d+\.\d+)')
[[ -n $version ]] && nvm use "$version"
}
nvminstall() {
local version
version=$(unalias curl; nvm ls-remote | fzf --inline-info --ansi --tac | grep -oP '(system|(iojs-)?v\d+\.\d+\.\d+)')
[[ -n $version ]] && nvm install "$version"
}
nvmuninstall() {
local version
version=$(unalias curl; nvm ls | fzf --inline-info --ansi | grep -oP '(system|(iojs-)?v\d+\.\d+\.\d+)')
[[ -n $version ]] && nvm uninstall "$version"
}
fi
}
[[ -s ~/.perlbrew/etc/bashrc ]] && {
loadperlbrew() {
source ~/.perlbrew/etc/bashrc
}
}
nodemon() {
if ! has node; then
err 'node not found'
return
fi
if [[ ! -x ./node_modules/.bin/nodemon ]]; then
err 'nodemon not in ./node_modules'
return
fi
if [[ $1 = '-'* ]]; then
node ./node_modules/.bin/nodemon "$@"
else
file="$1"
[[ $file = *'.js' ]] || file="${file}.js"
node ./node_modules/.bin/nodemon -w "$file" -x "node $file"
fi
}
if has rlwrap; then
node() {
local args magicFile
magicFile='./custom_repl.js'
if (( $# > 0 )); then
command node "$@"
else
if ! type -p node &> /dev/null; then
if has loadnvm; then
loadnvm
else
err 'node or nvm not installed?'
return
fi
fi
args=("$@")
[[ -r "$magicFile" ]] && args+=( -r "$magicFile" )
NODE_NO_READLINE=1 rlwrap -m -H ~/.node_repl_history -pblue node "${args[@]}"
fi
}
has guile && {
guile() {
if (( $# > 0 )); then
command guile "$@"
else
rlwrap guile
fi
}
}
has clojure && {
clojure() {
if (( $# > 0 )); then
command clojure "$@"
else
rlwrap clojure
fi
}
}
fi
[[ -e /opt/closure/compiler.jar ]] && {
closure() {
java -jar /opt/closure/compiler.jar "$@"
}
}
has VBoxManage && vm() {
VBoxManage startvm "$1" --type headless || return
echo 'starting ssh...'
ssh "$1"
VBoxManage controlvm "$1" poweroff
}
has api && {
api() {
local output
res=$(command api "$@")
if output=$(jq -C '.' <<< "$res"); then
echo "$output"
else
echo "$res"
fi
}
gitlab_get_repoid() {
res=$(command api gitlab get projects | jq ".[] | select(.name == \"$1\") | .id")
}
gitlab_make_public() {
local repo
repo="${1/\//%2F}"
res=$(command api gitlab put "projects/$repo" -d 'visibility=public&issues_enabled=true&wiki_enabled=true&public_jobs=true')
}
gitlab_build_list() {
local repoid
repo="${1/\//%2F}"
res=$(command api gitlab get "projects/$repo/jobs")
jq '.[] | select(.status == "running")' <<< "$res"
}
}
has boil && boil() {
loadperlbrew
command boil "$@" && while getopts 'n:' x; do
case "$x" in
n) cd ~/build/"$OPTARG"
esac
done
}
make() {
if [[ "$*" == 'me a sandwich'* ]]; then
shift 3
./configure "$@" && command make -j $(( $(nproc) - 1))
else
command make "$@"
fi
}
diffplugins() {
local file
if (( $# < 1 )); then
err 'need a file or url'
return 1
fi
if [[ $1 = http* ]]; then
has -v curl || return
file=$(command curl -s "$1")
elif [[ -r $1 ]]; then
file=$(< "$1")
else
err "$1 is not a readable file or url"
return 1
fi
diff -u <(command grep -Po "Plug '[^']+'" ~/.vimrc | sort) \
<(command grep -Po "Plug '[^']+'" <<< "$file" | sort) |
awk -F \' '/^\+/{printf "%s/%s\n", "https://github.com", $2}'
}
has fv && books() {
[[ -n $ZSH_VERSION ]] && emulate -L bash
local cmd dirs
cmd=$(select_from okular evince zathura)
for a; do
case "$a" in
-c) if has -v "$a"; then cmd="$a"; else return 1; fi
esac
done
cd ~/books &> /dev/null
fv -sado -c "$cmd"
cd - &> /dev/null
}
has fzf mpv && {
videos() {
local d findopts fzfopts
d="$HOME/videos"
findopts=()
fzfopts=( --bind="enter:execute(mpv --fullscreen $d/{})")
if [[ $1 = '-t' ]]; then
findopts=( -printf '%T@ %P\n' )
fzfopts=( --bind="enter:execute(mpv --fullscreen $d/{2..})" --with-nth='2..' --tac )
fi
command find "$d" \
-regextype posix-extended \
-iregex '.*\.(mp4|avi|mkv)' \
-type f \
"${findopts[@]}" |
sort -h |
sed "s|$d/||" |
fzf -e +s --height=75% --reverse \
--bind='esc:abort' \
"${fzfopts[@]}"
}
videos_random() {
local d movies
d="$HOME/videos"
movies=$(command find "$d" -regextype posix-extended -iregex '.*\.(mp4|avi|mkv)' -type f | sort -h | sed "s|$d/||" | fzf -e +s -m --height=75% --reverse)
mpv --fullscreen "$d/$(shuf -n1 <<< "$movies")"
}
}
# vim:ft=sh: