forked from kyleburton/profile
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathutils.conf
More file actions
452 lines (392 loc) · 7.67 KB
/
Copy pathutils.conf
File metadata and controls
452 lines (392 loc) · 7.67 KB
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
# vim:set ts=2 sw=2 et ai syn=sh:
#
# Collected shell (bash) utilities. This is a collection of shell
# utilities I've used in building software, maintaining my systems and
# doing simple data processing at the shell.
#
# author: Kyle Burton <kyle.burton@gmail.com>
#
# http://github.com/kyleburton/profile
#
#
# xargs grep: find . -type f | xargs grep some-token
#
function xg () {
xargs grep "$@"
}
#
# 'find files': find . -type f
#
# NB: in each of these 'find' commands, if the first argument exists a
# directory, it is taken as the location to search, the next argument
# is taken as the pattern (when a pattern is used) and any remaining
# arguments are passed to the last command in the pipeline.
#
function ff () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f "$@"
}
function ffs () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f ! -path \*\.svn\* "$@"
}
function ffg() {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f ! -path \*\.git\* "$@"
}
#
# Find files named 'X', where 'X' is automatically surrounded by
# wildcards so it can occurr anywhere within the name of the files.
#
# find . -type f -name '*X*'
#
function ffn () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f -name "*$1*"
}
function ffsn() {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f ! -path \*\.svn\* -name "*$1*"
}
# case insensitive version of ffn
function ffni () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f -iname "*$1*"
}
# 'find directories'
function fd () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type d "$@"
}
# find directories named
function fdn () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type d -name "*$1*"
}
# case insensitive version of fdn
function fdni () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type d -iname "*$1*"
}
# 'find clojure files', like ffn, but automatically appends a '.clj' suffix on the pattern.
function fclj () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.clj"
if [ -n "$1" ]; then
PAT="*$1*.clj"
shift
fi
find "$DIR" -type f -name "$PAT" "$@"
}
# case insensitive version of fclj
function fclji () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.clj"
if [ -n "$1" ]; then
PAT="*$1*.clj"
shift
fi
find "$DIR" -type f -iname "$PAT" "$@"
}
# 'find java files'
function fj () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.java"
if [ -n "$1" ]; then
PAT="*$1*.java"
shift
fi
find "$DIR" -type f -name "$PAT" "$@"
}
# case insensitive version of fj
function fji () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.java"
if [ -n "$1" ]; then
PAT="*$1*.java"
shift
fi
find "$DIR" -type f -iname "$PAT" "$@"
}
# 'find ruby files'
function fr () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.rb"
if [ -n "$1" ]; then
PAT="*$1*.rb"
shift
fi
find "$DIR" -type f -name "$PAT" "$@"
}
# case insensitive version of fr
function fri () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
PAT="*.rb"
if [ -n "$1" ]; then
PAT="*$1*.rb"
shift
fi
find "$DIR" -type f -iname "$PAT" "$@"
}
# combinations of the various find commands followed by a pipe to xargs grep
function fcljxg () {
fclj -print0 | xargs -0 grep "$@"
}
function fcljixg () {
fclji -print0 | xargs -0 grep "$@"
}
function fjxg () {
fj -print0 | xargs -0 grep "$@"
}
function fjixg () {
fji -print0 | xargs -0 grep "$@"
}
function frxg () {
fr -print0 | xargs -0 grep "$@"
}
function frixg () {
fri -print0 | xargs -0 grep "$@"
}
# various maven shortcuts
function mvno () {
mvn -o "$@"
}
function mvnoc () {
mvn -o compile "$@"
}
function mvnc () {
mvn compile "$@"
}
function mvnt () {
mvn -Dmaven.test.skip=true -DskipTests "$@"
}
function mvnot () {
mvn -o -Dmaven.test.skip=true -DskipTests "$@"
}
function mvni () {
mvn install "$@"
}
function mvnoi () {
mvn -o install "$@"
}
# very simple, hard-coded, completion for common maven commands and options.
complete -o default -W "generate-sources jar:jar assembly:assembly validate compile test package integration-test verify install deploy -DskipTests -Dmaven.test.skip=true" mvn
#
# Shell based data processing utilities, these all use standard unix
# utilities that nearly all expect tab-delimited input and produce tab
# delimited output.
#
# Header preseving grep, very useful for database table dumps as well as delimited and fixed width data files.
function hgrep () {
FILE="$1"
shift
(head -n 1 "$FILE"; tail -n +2 "$FILE" | grep "$@")
}
function hgrepi () {
FILE="$1"
shift
(head -n 1 "$FILE"; tail -n +2 "$FILE" | grep -i "$@")
}
# header preserving sort
function hsort () {
FILE="$1"
shift
(head -n 1 "$FILE"; tail -n +2 "$FILE" | sort "$@")
}
# header preserving tail
function htail () {
FILE="$1"
shift
(head -n 1 "$FILE"; tail -n +2 "$FILE" | tail "$@")
}
# test if any of the given files (or directories) exist
function any_exists () {
if [ -z "$1" ]; then
return -1
fi
if [ -e "$1" ]; then
return 0
fi
shift
any_exists $@
}
# jump back to project root
function proot () {
# project root is defined as the first directory (going back toward the root)
# containing one of the following
# .git
# Makefile, makefile
# Rakefile
# pom.xml
FILES=".git Makefile makefile Rakefile pom.xml"
if any_exists $FILES; then
echo "Project Root: `pwd`"
return
fi
if [ "$(pwd)" == "$HOME" ]; then
echo "Project Root not found"
return
fi
cd ..
proot
}
function mroot () {
FILES=".git pom.xml"
if any_exists $FILES; then
echo "Maven Project Root: `pwd`"
return
fi
if [ "$(pwd)" == "$HOME" ]; then
echo "Maven Project Root not found"
return
fi
cd ..
proot
}
function is_osx () {
uname -a | grep -q ^Darwin
}
function open_file () {
if is_osx; then
open "$@"
else
echo "Error(krb-bash-functions:open_file): unknown platform? => `uname -a`"
fi
}
function view_markup () {
FILE="$1"
echo "$FILE ${FILE#*.}"
if [ "md" = "${FILE#*.}" ]; then
echo "treating $FILE as markdown (maruku)"
maruku "$FILE"
OUT_FILE="`basename $1 .md`.html"
open_file "$OUT_FILE"
return $?
fi
if [ "textile" = "${FILE#*.}" ]; then
echo "treating $FILE as textile (redcloth)"
OUT_FILE="`basename $1`.html"
redcloth "$FILE" > "$OUT_FILE"
open_file "$OUT_FILE"
return $?
fi
echo "Not a recognized markup type, just invoking open_file($FILE)"
open_file "$FILE"
}
alias s='cd ..'
#
# 'find non-Subversion files': find . -type f
#
function ffs () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f \! -path \*\.svn\* "$@"
}
#
# 'find non-CVS files': find . -type f
#
function ffc () {
DIR="."
if [ -d "$1" ]; then
DIR="$1"
shift
fi
find "$DIR" -type f \! -path \*\CVS\* "$@"
}
function batt() {
PCNT=`tail -n1 /var/log/battery-stats | awk '{print $2}'`
echo ${PCNT}%
}
nth_field() {
awk "{print \$$1}"
}
to_iso_time() {
while [ -n "$1" ]; do
ruby -e "require 'time'; puts Time.at($1 / 1000).utc.iso8601"
shift
done
}
flike() {
local search path
if [ -z "$2" ]; then
search="$1"
path=.
else
search="$2"
path="$1"
fi
find "${path}" -iname "*${search}*"
}
..() {
local times
times=$(echo $1 | wc -c)
for ((i = 1; i < $times ; i++)); do
cd ..
done
}
curlx() {
curl $@ | tidy -q -xml -i
}