-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmread-util.sh
executable file
·483 lines (399 loc) · 8.39 KB
/
mread-util.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# This script should be sourced from your bash_profile!
# Required shell variables (you should set these here or in your bash profile):
# - GITHUB_USERNAME
# Edit this variable if you cloned this somewhere other than ~/Developer:
export MREAD_UTIL_BASE_PATH="$HOME/Developer/MatthewRyanRead/mread-util"
###
utiledit() {
$EDITOR "$MREAD_UTIL_BASE_PATH/mread-util.sh"
source "$MREAD_UTIL_BASE_PATH/mread-util.sh"
}
bashedit() {
$EDITOR "$HOME/.bash_profile"
source "$HOME/.bash_profile"
}
### GREP ###
gripeb() {
echo grep --color=auto -rIE --exclude-dir=\.git "$@" . >&2
grep --color=auto -rIE --exclude-dir=\.git "$@" . | less -r
}
grip() {
grep -i "$@"
}
gripe() {
gripeb 2>/dev/null "$@"
}
igripe() {
gripe -i "$@"
}
jgripe() {
gripe --include \*.java "$@"
}
jigripe() {
jgripe -i "$@"
}
jsgripe() {
gripe --include \*.js --include \*.mustache --exclude moment.js --exclude bundle.js --exclude \*.\*.js --exclude \*-min.js --exclude main.js --exclude templates.js --exclude-dir node_modules --exclude-dir testingData --exclude-dir packages --exclude-dir __tests__ "$@"
}
jsigripe() {
jsgripe -i "$@"
}
sqlgripe() {
gripe --include \*.sql --exclude-dir target "$@"
}
sqligripe() {
sqlgripe -i "$@"
}
### GIT ###
g() {
git "$@"
}
clone() {
g clone "$@"
}
status() {
g status "$@"
}
fetch() {
g fetch "$@"
}
adda() {
g add -A "$@"
}
addu() {
g add -u "$@"
}
push() {
g push "$@"
}
pushf() {
g push --force-with-lease "$@"
}
pushu() {
g push -u "$@"
}
blist() {
g branch -l --list "$@"
}
hdiff() {
g diff HEAD "$@"
}
fulldiff() {
g diff-index --binary "$@"
}
changedfiles() {
g diff --name-only HEAD~1 "$@"
}
co() {
# only fetch if checking out a branch/ref (`co my-ref`), not a file (`co my-ref my-file`)
if [[ "$2" == "" ]]; then
fetch
fi
g checkout "$@"
}
master() {
co master && fetch && g reset --hard origin/master "$@"
}
main() {
co main && fetch && g reset --hard origin/main "$@"
}
revert() {
co HEAD~1 "$@"
}
cherry() {
g cherry-pick "$@"
}
commit() {
g commit -m "$@"
}
admit() {
addu && commit "$@"
}
resetmaster() {
fetch && g reset --hard origin/master "$@"
}
latest() {
fetch && g reset --hard origin/$(g rev-parse --abbrev-ref HEAD)
}
newb() {
co -b "$@" && pushu
}
rebase() {
fetch && g rebase "$@" origin/HEAD
}
amend() {
if [ "$1" == "" ]; then
g commit --amend --no-edit
else
commit "$@" --amend
fi
}
commend() {
addu && amend "$@"
}
crunch() {
addu && amend && fetch && rebase && pushf "$@"
}
hascommit() {
g log "$1" | grep "$2"
}
# remove all local branches except for the current one + master/main
gpurge() {
blist | grep -v '^\*' | grep -oE '[^ ]+' | grep -vE '^(master|main)$' | while read line; do g branch -D "$line"; done
g prune
}
pruneall() {
g reflog expire --expire=now --all
g gc --aggressive --prune=now
g remote prune origin
}
gclean() {
gpurge && pruneall
}
branchpoint() {
g log -g --pretty=oneline "$(g rev-parse --abbrev-ref HEAD)" | tail -n 1 | awk '{ print $1; }'
}
delcommit() {
local BRANCH_POINT
BRANCH_POINT="$(branchpoint)"
local HEAD
HEAD="$(g rev-parse HEAD)"
g reset --hard "$BRANCH_POINT"
g rev-list "$BRANCH_POINT...$HEAD" | tac | while read line; do
if [ "$line" != "$1" ]; then
cherry "$line"
fi
done
}
branchdiff() {
g diff "$(branchpoint)...HEAD" "$@"
}
rbcont() {
addu && g rebase --continue "$@"
}
remotebranch() {
git rev-parse --abbrev-ref --symbolic-full-name '@{u}' 2> /dev/null | grep -oE '[^/]+$'
}
localbranch() {
g branch 2> /dev/null | grep -E '^\*' | awk '{ print $2; }'
}
timelog() {
g reflog --format="%C(auto)%h %<|(17)%gd %C(blue)%ci%C(reset) %s" "$@"
}
### GITHUB ###
github_create_repo() {
local ARG1
if [ "$2" == "" ]; then
echo "Usage: github_create_repo [username] [reponame] <oneTimeCode>"
return 1
fi
if [ "$3" != "" ]; then
ARG1="X-GitHub-OTP: $3"
fi
local ARG2
ARG2="{\"name\":\"$2\"}"
local http_code
http_code=$(curl -u "$1" -H "$ARG1" -d "$ARG2" https://api.github.com/user/repos -s -o /dev/null -w "%{http_code}")
if [ "$http_code" -ge 300 ] || [ "$http_code" -lt 200 ]; then
echo "Error code: $http_code"
return "$http_code"
fi
return 0
}
ghcr() {
local reponame
reponame=$(basename "$PWD")
github_create_repo "$GITHUB_USERNAME" "$reponame" "$@"
local exit_code=$?
if [ $exit_code -ne 0 ]; then
return $exit_code
fi
echo "# $reponame" > README.md
g init
g add README.md
commit 'init repo with README'
g remote add origin "[email protected]:$GITHUB_USERNAME/$reponame.git"
g push -u origin main
}
rewrite-all-committers() {
local committer_name
committer_name="$(git config user.name)"
local committer_mail
committer_mail="$(git config user.email)"
git filter-branch --env-filter "
export GIT_COMMITTER_NAME=\"$committer_name\"
export GIT_COMMITTER_EMAIL=\"$committer_mail\"
export GIT_AUTHOR_NAME=\"$committer_name\"
export GIT_AUTHOR_EMAIL=\"$committer_mail\"
" --tag-name-filter cat -- --branches --tags
}
cloneme() {
clone "[email protected]:$GITHUB_USERNAME/$1"
}
### DOS COMPAT ###
cls() {
clear "$@"
}
where() {
which "$@"
}
tracert() {
traceroute "$@"
}
### SHELL/UTIL HELPERS ###
if [ -z "$(which tac)" ]; then
tac() {
tail -r "$@"
}
fi
if [ -z "$(which pbcopy)" ]; then
pbcopy() {
xclip -selection clipboard
}
pbpaste() {
xclip -selection clipboard -o
}
fi
# a better version of 'history'
h() {
if [ "$1" == "" ]; then
history | tac | less -r
else
local args="$*"
history | grep --color=auto -E "$args" | tac | less -r
fi
}
# 'uniq' doesn't actually make things unique....
dedupe() {
uniq "$@"
}
unique() {
sort | uniq "$@"
}
fame() {
find . -name "$@"
}
filecount() {
ls -l | wc -l "$@"
}
# so you don't have to CD into the path or re-type it
rename() {
mv "$1" "$(dirname $1)/$2"
}
swap() {
mv "$1" "$TMPDIR/$1"
mv "$2" "$1"
mv "$TMPDIR/$1" "$2"
}
# basic xargs that works with functions
zargs() {
while read line; do "$@" "$line"; done
}
### EDITING ###
# find and edit in one go
vind() {
fame -exec vim {} \; "$@"
}
finj() {
idea "$(fame "$@")"
}
### CERTS ###
# import a cert
addcert() {
if [ "$(uname)" == "Darwin" ]; then
sudo security add-trusted-cert -d -r trustRoot -k "/Library/Keychains/System.keychain" "$@"
else
certutil -d sql:"$HOME"/.pki/nssdb -A -t P -n "$1" -i "$1"
fi
}
dlcert() {
openssl s_client -showcerts -connect "$1:$2" < /dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > "$1.pem"
}
describecert() {
openssl x509 -text -in "$@"
}
### MAVEN ###
maven() {
mvn "$@"
}
mvnnt() {
mvn -DskipTests -DskipITs "$@"
}
mvnin() {
mvnnt install "$@"
}
mvnci() {
mvnnt clean install "$@"
}
mvnpkg() {
mvnnt package "$@"
}
mvncp() {
mvnnt clean package "$@"
}
cleansnaps() {
find ~/.m2/repository -depth -type d -regex '.*-SNAPSHOT$' -exec rm -rf {} \;
}
### RANDOM ###
repeatgif() {
gifsicle -bl "$@"
}
pushd() {
local UNAME
UNAME="$(uname)"
if [ "$UNAME" == "Darwin" ] || [ "$UNAME" == "Linux" ]; then
command pushd "$@" > /dev/null || return
else
command pushd "$@" || return
fi
}
popd() {
local UNAME
UNAME="$(uname)"
if [ "$UNAME" == "Darwin" ] || [ "$UNAME" == "Linux" ]; then
command popd "$@" > /dev/null || return
else
command popd "$@" || return
fi
}
repeat() {
for suffix in "${@:2}"; do
eval "$1""$suffix"
done
}
upgrate() {
sudo apt update && sleep 1 && sudo apt upgrade "$@"
}
inst() {
sudo apt install "$@"
}
restartnow() {
local UNAME
UNAME="$(uname)"
if [ "$UNAME" == "Darwin" ] || [ "$UNAME" == "Linux" ]; then
sudo shutdown -r now
else
shutdown /r /t 0
fi
}
mcat() {
cat "$@" | more
}
lcat() {
cat "$@" | less
}
detail() {
local FPATH
FPATH=$(which "$1" | tr -d '\r' | tr -d '\n')
if [ -z "$FPATH" ]; then
ls -al "$1" && file "$1"
else
ls -al "$FPATH" && file "$FPATH"
fi
}
prettify() {
python -m json.tool "$@"
}
hex() {
echo -n "$1" | xxd -ps -c 0 "${@:2}"
}