-
Notifications
You must be signed in to change notification settings - Fork 0
/
.aliases_functions.sh
468 lines (379 loc) · 14.9 KB
/
.aliases_functions.sh
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
### PROGRAM OVERRIDES #################################################################################################
alias cat='bat' # https://github.com/sharkdp/bat
#alias find='fd' # https://github.com/sharkdp/fd
alias ls="lsd" # https://github.com/Peltoche/lsdexport
alias ssh="assh wrapper ssh --" # https://github.com/moul/assh
# Program aliases
alias excel="open -a 'Microsoft Excel'"
alias code="code-insiders"
alias vscode="code-insiders"
alias pc="pre-commit"
### SHELL UTILITIES ####################################################################################################
alias choose="fzf --height 10"
alias fchoose="ls | choose"
# Check environment variables: shorthand or `env | grep i <foo>`. Redacts passwords and tokens.
cenv(){
# Parse options
redact_data=1
if [ "$1" = "--help" ]; then
echo "-p: plain (don't redact)"
return
elif [ "$1" = "-p" ]; then
redact_data=0
shift
fi
output=$(env)
# Redacting
if [ $redact_data -eq 1 ]; then
# Extract sensitive values
sensitive_values=()
for var in $(echo "$output" | grep -E "PASSWORD|TOKEN|SECRET|KEY|ROLE_ID" | cut -d '=' -f 2-); do
escaped_val=$(echo "$var" | sed 's/[]\/$*.^+[]/\\&/g')
sensitive_values+=($escaped_val)
done
# Redact sensitive values from all variables
for val in "${sensitive_values[@]}"; do
output=$(echo "$output" | sed -E "s/$val/<redacted>/g")
done
# Mark empty variables and exclude PS1
output=$(echo "$output" | grep -ve "^PS1" | sed -E "s/([^=]+)=$/\1=<empty>/")
fi
# Filter output if a search string is passed
if [ -n "$1" ]; then
output=$(echo "$output" | grep -i $1 --color=always)
fi
echo "$output"
}
# Unset env vars based on regex matching (case insensitive)
unsetall(){
# Get matching variable names as a newline-separated string
vars=$(env | grep -i "$1" | awk -F "=" '{print $1}')
# Convert newline-separated variable names to an array in a cross-shell compatible manner
if [[ -n "$vars" ]]; then
# Use a while loop to read each line
while IFS= read -r var; do
unset "$var"
echo "Unset: $var"
done <<< "$vars"
fi
}
# Edit an ENV VAR in $EDITOR, then export it back to the shell
editvar(){
envvar=$(env | choose)
tempfile=$(temp-filepath)
echo "$envvar" > $tempfile
$EDITOR $tempfile
eval "export $(cat $tempfile)"
cat $tempfile
}
# Select dotfile to source from .rc directory
sl(){
echo "Use alias 'se' to easily edit these files"
# find -L: follow symlinks
source $(find -L ~/.rc -type f | choose)
}
se(){
echo "Use alias 'se' to easily edit these files"
# find -L: follow symlinks
code $(find -L ~/.rc -type f | choose)
}
# Shows definition of passed alias or function
define(){
# type $1
alias $1 | bat -p --language sh # this is a no-op on functions, so we can safely run it on both aliases and functions
declare -f $1 | bat --style numbers,grid --language sh || return 0 # declare only on functions, don't error out if $1 is an alias
}
# default: returns a default value if STDIN is empty, otherwise return STDIN
default() {
grep . || echo $1
# awk '{print ($0 == "" ? "'$1'" : $0)}'
}
line(){
linechar=${1:-"#"}
python -c "print('\033[0;36m' + ('$linechar' * $(tput cols) + '\033[0m'))"
# printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' -
}
# o2f: output-to-file. Runs a command and writes the output to a file, returns filename
# NOTE: should be the same as <(some command), consider removing this
o2f(){
file=$(temp-filepath)
echo $file
eval "$@" > $file
}
### TIME ###############################################################################################################
# Human friendly timestamp
human-timestamp(){
date +'%Y-%m-%d_%H-%M-%S'
}
today(){
date +'%Y-%m-%d'
}
### FILE I/O ###########################################################################################################
random-filename(){
prefix=${1:-"file-"}
echo "$prefix$(human-timestamp)"
}
temp-filepath(){
echo "/tmp/$(random-filename $1)"
}
### NETWORKING #########################################################################################################
set-etc-hosts() {
if [ -z "$1" ] || [ -z "$2" ]; then
echo "Usage: $0 <hostname> <ip-address>"
return 1
fi
HOSTNAME="$1"
NEW_IP="$2"
if grep -q "$HOSTNAME" /etc/hosts; then
# sudo sed -i "" "s/^[0-9\.]*\s*$HOSTNAME/$NEW_IP $HOSTNAME/" /etc/hosts
sudo sed -i "" "s/^[0-9\.]* $HOSTNAME/$NEW_IP $HOSTNAME/" /etc/hosts
echo "IP address for $HOSTNAME updated to $NEW_IP."
else
echo "$HOSTNAME not found in /etc/hosts. Adding $NEW_IP $HOSTNAME."
sudo sh -c "echo '$NEW_IP $HOSTNAME' >> /etc/hosts"
fi
}
### HARDWARE ###########################################################################################################
cputemp(){
sudo powermetrics --samplers smc |grep -i "CPU die temperature"
}
### PROCESS MGMT #######################################################################################################
mykill(){
# TODO: also consider fkill: https://github.com/sindresorhus/fkill-cli
process=$(ps -ef | rg -i $1 | choose)
echo $process | awk '{print $2}' | xargs kill -9
echo "Killed: $process"
}
unbloat(){
pkill "Microsoft Excel"
}
### FOCUS MODES #######################################################################################################
# Copies select dotfiles to dotfiles repo on `menthol` server
copy-dotfiles() {
target="[email protected]:~/repos/dotfiles"
# use /./ in rsync to tell rsync to copy the path from that point forward
# Thanks sir! https://serverfault.com/a/973844/166001
# --copy-links: if the local files are symlinks, resolve them first and copy the actual files, not the symlinks
rsync --copy-links --relative ~/./{.env.sh,.aliases_functions.sh,.version-managers.sh} $target
rsync --copy-links --relative ~/./{.tool-versions,.*.omp.json,.utils.py,.zshrc,.vimrc} $target
# git
rsync --copy-links --relative ~/./{.gitconfig,.gitignore_global} $target
# python
rsync --copy-links --relative ~/./{.pdbrc,.pythonrc.py} $target
# Misc
rsync --copy-links --relative ~/./{.config/gh/config.yml,.ssh/assh.yml,.hammerspoon/cheatsheets.lua} $target
# vscode
rsync --copy-links --relative ~/Library/Application\ Support/Code\ -\ Insiders/User/{settings,keybindings}.json $target/vscode
}
### TERMINAL ###########################################################################################################
darkmode(){
# Set black background, white text
# echo -e "\033]Ph000000\033\\"
# foreground color not working :(
# echo -e "\033]PiFFFFFF\033\\"
unset FZF_DEFAULT_OPTS
git config --global delta.light false
}
lightmode(){
# Set white background, black text
# echo -e "\033]PhFFFFFF\033\\"
# foreground color not working :(
# echo -e "\033]Pi000000\033\\"
export FZF_DEFAULT_OPTS='--color=light'
git config --global delta.light true
}
### WORK MODES ########################################################################################################
focus-personal(){
pkill "Microsoft Excel"
pkill "Microsoft PowerPoint"
pkill "Microsoft Outlook"
pkill "Webex Teams"
pkill "draw.io"
pkill "SimpleMind"
}
focus-work(){
open -a 'Microsoft Outlook'
open -a 'Webex Teams'
}
focus-outside(){
set-etc-hosts httpproxy 192.168.8.1
# Send all traffic for home network via GLINet router
sudo route -n add 192.168.0.0/16 192.168.8.1
lightmode
echo "Terminal set to light mode"
}
focus-desk(){
set-etc-hosts httpproxy 192.168.40.123
sudo route -n delete 192.168.0.0/16 192.168.8.1
darkmode
echo "Terminal set to dark mode"
}
### DATA WRANGLING ####################################################################################################
# .utils.py is a python script that contains functions for data wrangling
# While some of these could be written as pure shell functions, python makes many functions simpler and portable across
# shells.
alias _u="python ~/.utils.py"
eval "$(_u _install_aliases _u)"
ldiff(){
_u linecompare $1 $2 | less -SR
}
csvdiff(){
echo "$1: $(xsv count $1)x$(xsv headers $1 | wc -l | tr -d ' ')"
echo "$2: $(xsv count $2)x$(xsv headers $2 | wc -l | tr -d ' ')"
_u csvcompare $1 $2 $3 | xsv table
}
xlsdiff(){
# Uses xlsx2csv to convert, and then does a CSV compare: https://github.com/dilshod/xlsx2csv
_u csvcompare <(xlsx2csv -n Data $1) <(xlsx2csv -n Data $2) $3 | xsv table
}
xlsview(){
xlsx2csv -n Data $1 | xsv table
}
xlscount(){
xlsx2csv -n Data $1 | xsv count
}
# Show frequency table
frequency() {
sort | uniq -c | sort -nr | trim
}
# stats() {
# echo "Lines Count: $(wc -l | trim)"
# echo "Unique Lines: $(sort | uniq | wc -l | trim)"
# }
### SCRATCHPAD #########################################################################################################
alias sc="cat /tmp/scratchpad.txt"
scn(){
# replace windows newlines with unix newlines (required when copying from excel)
pbpaste | sd "\r\n" "\n" > /tmp/scratchpad.txt
sc # show scratchpad
}
alias sce="code /tmp/scratchpad.txt"
### DESK ##############################################################################################################
# https://github.com/jamesob/desk
# alias dl="desk list" # conflicts with `alias dl='docker log'`
desk_choose(){
desk list | choose | awk '{print $1}'
}
ds() { # Desk "switch"
if [ $SHLVL -gt 1 ]; then
echo "Exiting current subshell; run ds again"
kill $$
fi
desk go $(desk_choose)
}
de(){
# Find the first desk with matching name in the ~/.desk/ directory
desk_path=$(find ~/.desk/ -name "$(desk_choose)*" -print -quit)
code $desk_path
}
### PYTEST #############################################################################################################
# TODO: still WIP, easily extract paths from pytest output
pypaths() {
pbpaste | split "," | awk '{print $3}' | sd "local\('" "" | sd "'\)" "" | xargs -L2 echo ldiff
}
### HASHICORP VAULT ####################################################################################################
hvault_login(){
error_msg="Required env vars: VAULT_ADDR, VAULT_NAMESPACE, VAULT_ROLE_ID, VAULT_SECRET_ID"
[ -z ${VAULT_ADDR} ] && echo $error_msg && return 1
[ -z ${VAULT_NAMESPACE} ] && echo $error_msg && return 1
[ -z ${VAULT_ROLE_ID} ] && echo $error_msg && return 1
[ -z ${VAULT_SECRET_ID} ] && echo $error_msg && return 1
VAULT_RESPONSE=$(vault write auth/approle/login role_id=$VAULT_ROLE_ID secret_id=$VAULT_SECRET_ID -format=json)
export VAULT_TOKEN=$(echo $VAULT_RESPONSE | jq -r .auth.client_token)
}
### ANSIBLE ###########################################################################################################
#export ANSIBLE_VAULT_PASSWORD_FILE="~/.ansible-vault-password"
# Re-use (a)ssh controlpath for ssh connections
# ANSIBLE_SSH_COMMON_ARGS applies to ssh/scp/sftp connections, vs. ANSIBLE_SSH_EXTRA_ARGS which is for SSH only
export ANSIBLE_SSH_COMMON_ARGS="-o ControlMaster=auto -o ControlPersist=yes -o ControlPath=~/.ssh/socket-%h-%p-%r.sock"
# Speeds up connections, but can cause issues with some target hosts:
# https://docs.ansible.com/ansible/latest/reference_appendices/config.html#ansible-pipelining
export ANSIBLE_PIPELINING=1
ansible-vault-get(){
local VAULT="$(ansible-vault view ~/repos/casa-data/group_vars/all)"
echo "$VAULT" | awk "/$1: /{print \$2}" | tr -d '\"'
}
ansible-vault-search(){
local VAULT="$(ansible-vault view ~/repos/casa-data/group_vars/all)"
echo "$VAULT" | grep "$1"
}
# Get host IP. Usage: ansible-host <hostname>
ansible-host(){
ansible-inventory -i ~/repos/casa-data/inventory/prod --list | jq -r ."$1.hosts[0]"
}
# Get variable for a given host. Usage: ansible-inventory-get <host> <varname>
ansible-inventory-get(){
ansible-inventory -i ~/repos/casa-data/inventory/prod --host $1 | jq -r .$2
}
### Docker ############################################################################################################
function alias-docker(){
alias d='docker'
alias di='docker inspect'
alias dr='docker run'
alias dl='docker logs'
alias dk='docker kill'
alias dp='docker container prune'
alias dps='docker ps'
alias dil='docker image list'
alias dvl='docker volume list'
alias dnl='docker network list'
alias dc='docker-compose'
alias | grep docker
}
### KUBERNETES ########################################################################################################
### VAGRANT ###########################################################################################################
alias v='vagrant'
alias vs='vagrant status'
alias vgs='vagrant global-status'
alias vss='vagrant ssh'
alias vup='vagrant up'
alias vssh='vagrant ssh'
#alias vd='vagrant destroy -f' # conflicts with visidata
### LDAP ##############################################################################################################
lds(){
ldapsearch -o ldif-wrap=no -H $LDAP_HOST -w $LDAP_PASSWORD -D $LDAP_BIND -b $LDAP_BASE_SEARCH $1
}
### Device42 ##########################################################################################################
d42get(){
curl -s -k -u "$D42_USERNAME:$D42_PASSWORD" "$D42_BASE_URL$@"
}
d42post(){
curl -s -k -u "$D42_USERNAME:$D42_PASSWORD" -X POST "$D42_BASE_URL$@"
}
d42put(){
curl -s -k -u "$D42_USERNAME:$D42_PASSWORD" -X PUT "$D42_BASE_URL$@"
}
d42delete(){
curl -s -k -u "$D42_USERNAME:$D42_PASSWORD" -X DELETE "$D42_BASE_URL$@"
}
### Tableau ############################################################################################################
tableau_get(){
curl -s -H "X-Tableau-Auth: $TABLEAU_TOKEN" -H "Accept: application/json" "$TABLEAU_URL$@"
}
tableau_post(){
curl -s -X POST -H "X-Tableau-Auth: $TABLEAU_TOKEN" -H "Accept: application/json" "$TABLEAU_URL$@"
}
tableau_site_get(){
tableau_get "/sites/$TABLEAU_SITE_ID$@"
}
tableau_site_post(){
tableau_post "/sites/$TABLEAU_SITE_ID$@"
}
tableau_signin(){
PAYLOAD=$(cat <<EOF
{
"credentials": {
"personalAccessTokenName": "$TABLEAU_PERSONAL_ACCESS_TOKEN_NAME",
"personalAccessTokenSecret": "$TABLEAU_PERSONAL_ACCESS_TOKEN",
"site": {
"contentUrl": "$TABLEAU_CONTENTURL"
}
}
}
EOF
)
export TABLEAU_TOKEN=$(curl -s -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d "$PAYLOAD" $TABLEAU_URL/auth/signin | jq -r ".credentials.token")
cenv TABLEAU_TOKEN
export TABLEAU_SITE_ID=$(tableau_get "/sites" | jq -r ".sites.site[] | select(.contentUrl == \"$TABLEAU_CONTENTURL\").id")
cenv TABLEAU_SITE_ID
}