-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatcher
executable file
·127 lines (116 loc) · 2.37 KB
/
watcher
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
#!/bin/bash
function watch-log() {
location=$(git rev-parse --show-toplevel)
fswatch -or $location/.git -e $location/.git/index.lock | while read MODFILE
do
tty=$(ps -o tty= -p $$)
pids=$(pgrep -t $tty $PAGER)
while read -r pid; do
echo $pid
kill -9 $pid
done <<< "$pids"
done
}
function logger() {
clear;
git --paginate log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset)%C(bold yellow)%d%C(reset) %C(white)%s%C(reset) - %C(bold green)(%ar)%C(reset)' --all
}
function watch-lint() {
fswatch -or src | while read MODFILE
do
tty=$(ps -o tty= -p $$)
pids=$(pgrep -t $tty $PAGER)
while read -r pid; do
echo $pid
kill -9 $pid
done <<< "$pids"
done
}
function linter() {
clear;
yarn lint --color | less
}
function watch-diff-cached() {
location=$(git rev-parse --show-toplevel)
fswatch -o $location/.git/index $location/.git/logs/HEAD | while read MODFILE
do
tty=$(ps -o tty= -p $$)
pids=$(pgrep -t $tty $PAGER)
while read -r pid; do
echo $pid
kill -9 $pid
done <<< "$pids"
done
}
function cacher() {
clear;
git --paginate diff --cached $@
}
function watch-diff() {
location=$(git rev-parse --show-toplevel)
fswatch -or $location -e "*($location/.git/index.lock|node_modules|dist)*" | while read MODFILE
do
tty=$(ps -o tty= -p $$)
pids=$(pgrep -t $tty $PAGER)
while read -r pid; do
echo $pid
kill -9 $pid
done <<< "$pids"
done
}
function differ() {
clear;
git --paginate diff $@
}
function watch-status() {
location=$(git rev-parse --show-toplevel)
echo $location
fswatch -o $location/.git/index $location/.git/logs/HEAD | while read MODFILE
do
tty=$(ps -o tty= -p $$)
pids=$(pgrep -t $tty $PAGER)
while read -r pid; do
echo $pid
kill -9 $pid
done <<< "$pids"
done
}
function get-status {
clear;
git --paginate status
}
case $1 in
"log" )
watch-log &
while true; do
logger
done
;;
"cache" )
watch-diff-cached &
while true; do
cacher ${@:2}
done
;;
"diff" )
watch-diff &
while true; do
differ ${@:2}
done
;;
"lint" )
watch-lint &
while true; do
linter ${@:2}
done
;;
"status" )
watch-status &
while true; do
get-status
done
;;
* )
echo "Watcher not found. Good bye!"
;;
esac