7bd88cb52cf07054396097a163fd598f33230662
[khome.git] / home / lib / login_functions.sh
1 #
2
3 ## open : string -> unit
4 ##
5 ## Fork xdg-open so we don't block current terminal session when opening
6 ## things like pdf files. For example:
7 ##
8 ## open book.pdf
9 ##
10 open() {
11 (xdg-open "$1" &) &
12 }
13
14 ## notify_done : unit -> unit
15 notify_done() {
16 local -r _status_code="$?"
17 local -r _program="$1"
18 local _timestamp
19 _timestamp="$(timestamp)"
20 local -r _msg="$_timestamp [$_program] done "
21 if [[ "$_status_code" -eq 0 ]]
22 then
23 notify-send -u normal "$_msg OK: $_status_code"
24 else
25 notify-send -u critical "$_msg ERROR: $_status_code"
26 fi
27 }
28
29 ## p : string -> unit
30 p() {
31 awk \
32 -v _s="$1" \
33 '
34 BEGIN {_s = tolower(_s)}
35
36 # TODO fzf/dmenu select instead of searching:
37 /^[a-zA-Z]/ && tolower($1) ~ _s && NF >= 2 {
38 n++
39 s = $1
40 p = $NF
41 if (NF == 2) {
42 e = ""
43 u = ""
44 } else if (NF == 3) {
45 e = $2
46 u = ""
47 } else {
48 e = $2
49 u = $3
50 } # TODO What would NF > 4 mean?
51
52 printf("%d [O] s:\"%s\", e:\"%s\", u:\"%s\"\n", n, s, e, u) > "/dev/stderr"
53 if (match(u, "@")) {
54 tmp = e
55 e = u
56 u = tmp
57 printf("%d [C] s:\"%s\", e:\"%s\", u:\"%s\"\n", n, s, e, u) > "/dev/stderr"
58 }
59
60 printf "%s", p # XXX Intentionally avoiding newline in the result.
61 }
62
63 END {
64 if (n == 1) {
65 exit 0
66 } else if (n == 0) {
67 printf "[ERROR] Found nothing.\n" > "/dev/stderr"
68 exit 1
69 } else if (n > 1) {
70 # TODO fzf-select which of the records the user (ahem, me) wants.
71 printf "[WARNING] Found more than one record.\n" > "/dev/stderr"
72 exit 0
73 }
74 }
75 ' \
76 ~/._p/p \
77 | xsel -i -b -t 30000
78 }
79
80 ## web search
81 ## ws : string -> unit
82 ws() {
83 local line search_string0 search_string
84
85 search_string0="$*"
86 case "$search_string0" in
87 '')
88 while read -r line; do
89 search_string="${search_string} ${line}"
90 done;;
91 *)
92 search_string="$search_string0";;
93 esac
94
95 firefox --search "$search_string"
96 }
97
98
99 ## dictionary
100 ## d : string -> string list
101 d() {
102 local -r word=$(fzf < /usr/share/dict/words)
103 dict "$word"
104 }
105
106 ## shell_activity_report : (mon | dow) -> string list
107 shell_activity_report() {
108 # TODO: optional concrete number output
109 # TODO: optional combinations of granularities: hour, weekday, month, year
110 local group_by="$1"
111 case "$group_by" in
112 'mon') ;;
113 'dow') ;;
114 '') group_by='dow';;
115 *)
116 echo "Usage: $0 [mon|dow]" >&2
117 kill -INT $$
118 esac
119 history \
120 | awk -v group_by="$group_by" '
121 function date2dow(y, m, d, _t, _i) {
122 # Contract:
123 # y > 1752, 1 <= m <= 12.
124 # Source:
125 # Sakamoto`s methods
126 # https://en.wikipedia.org/wiki/Determination_of_the_day_of_the_week#Sakamoto%27s_methods
127 _t[ 0] = 0
128 _t[ 1] = 3
129 _t[ 2] = 2
130 _t[ 3] = 5
131 _t[ 4] = 0
132 _t[ 5] = 3
133 _t[ 6] = 5
134 _t[ 7] = 1
135 _t[ 8] = 4
136 _t[ 9] = 6
137 _t[10] = 2
138 _t[11] = 4
139 y -= m < 3
140 _i = int(y + y/4 - y/100 + y/400 + _t[m - 1] + d) % 7
141 _i = _i == 0 ? 7 : _i # Make Sunday last
142 return _i
143
144 }
145
146 {
147 # NOTE: $2 & $3 are specific to oh-my-zsh history output
148 date = $2
149 time = $3
150 d_fields = split(date, d, "-")
151 t_fields = split(time, t, ":")
152 if (t_fields && d_fields) {
153 # +0 to coerce number from string
154 year = d[1] + 0
155 month = d[2] + 0
156 day = d[3] + 0
157 hour = t[1] + 0
158 dow = date2dow(year, month, day)
159 g = group_by == "mon" ? month : dow # dow is default
160 c = count[g, hour]++
161 }
162 if (c > max)
163 max = c
164 }
165
166 END {
167 w[1] = "Monday"
168 w[2] = "Tuesday"
169 w[3] = "Wednesday"
170 w[4] = "Thursday"
171 w[5] = "Friday"
172 w[6] = "Saturday"
173 w[7] = "Sunday"
174
175 m[ 1] = "January"
176 m[ 2] = "February"
177 m[ 3] = "March"
178 m[ 4] = "April"
179 m[ 5] = "May"
180 m[ 6] = "June"
181 m[ 7] = "July"
182 m[ 8] = "August"
183 m[ 9] = "September"
184 m[10] = "October"
185 m[11] = "November"
186 m[12] = "December"
187
188 n = group_by == "mon" ? 12 : 7 # dow is default
189
190 for (gid = 1; gid <= n; gid++) {
191 group = group_by == "mon" ? m[gid] : w[gid]
192 printf "%s\n", group;
193 for (hour=0; hour<24; hour++) {
194 c = count[gid, hour]
195 printf " %2d ", hour
196 for (i = 1; i <= (c * 100) / max; i++)
197 printf "|"
198 printf "\n"
199 }
200 }
201 }'
202 }
203
204 ## top_commands : unit -> (command:string * count:number * bar:string) list
205 top_commands() {
206 history \
207 | awk '
208 {
209 count[$4]++
210 }
211
212 END {
213 for (cmd in count)
214 print count[cmd], cmd
215 }' \
216 | sort -n -r -k 1 \
217 | head -50 \
218 | awk '
219 {
220 cmd[NR] = $2
221 c = count[NR] = $1 + 0 # + 0 to coerce number from string
222 if (c > max)
223 max = c
224 }
225
226 END {
227 for (i = 1; i <= NR; i++) {
228 c = count[i]
229 printf "%s %d ", cmd[i], c
230 scaled = (c * 100) / max
231 for (j = 1; j <= scaled; j++)
232 printf "|"
233 printf "\n"
234 }
235 }' \
236 | column -t
237 }
238
239 ## Top Disk-Using directories
240 ## TODO: Consider using numfmt instead of awk
241 ## tdu : path-string -> (size:number * directory:path-string) list
242 tdu() {
243 local -r root_path="$1"
244
245 du "$root_path" \
246 | awk '
247 {
248 size = $1
249 path = $0
250 sub("^" $1 "\t+", "", path)
251 paths[path] = size
252 if (size > max)
253 max = size
254 }
255
256 END {
257 for (path in paths) {
258 size = paths[path]
259 pct = 100 * (size / max)
260 gb = size / 1024 / 1024
261 printf("%6.2f %3d%% %s\n", gb, pct, path)
262 }
263 }
264 ' \
265 | sort -r -n -k 1 \
266 | head -50 \
267 | tac
268 # A slight optimization: head can exit before traversing the full input.
269 }
270
271 ## Top Disk-Using Files
272 ## tduf : path-string list -> (size:number * file:path-string) list
273 tduf() {
274 find "$@" -type f -printf '%s\t%p\0' \
275 | sort -z -n -k 1 \
276 | tail -z -n 50 \
277 | gawk -v RS='\0' '
278 {
279 size = $1
280 path = $0
281 sub("^" $1 "\t+", "", path)
282 gb = size / 1024 / 1024 / 1024
283 printf("%f\t%s\n", gb, path)
284 }'
285 }
286
287 # Most-recently modified file system objects
288 ## recent : ?(path-string list) -> path-string list
289 recent() {
290 # NOTES:
291 # - %T+ is a GNU extension;
292 # - gawk is able to split records on \0, while awk cannot.
293 find "$@" -printf '%T@ %T+ %p\0' \
294 | tee >(gawk -v RS='\0' 'END { printf("[INFO] Total found: %d\n", NR); }') \
295 | sort -z -k 1 -n -r \
296 | head -n "$(stty size | awk 'NR == 1 {print $1 - 5}')" -z \
297 | gawk -v RS='\0' '
298 {
299 sub("^" $1 " +", "") # Remove epoch time
300 sub("+", " ") # Blank-out the default separator
301 sub("\\.[0-9]+", "") # Remove fractional seconds
302 print
303 }'
304 }
305
306 ## recent_dirs : ?(path-string list) -> path-string list
307 recent_dirs() {
308 recent "$@" -type d
309 }
310
311 ## recent_files : ?(path-string list) -> path-string list
312 recent_files() {
313 recent "$@" -type f
314 }
315
316 ## pa_def_sink : unit -> string
317 pa_def_sink() {
318 pactl info | awk '/^Default Sink:/ {print $3}'
319 }
320
321 ## void_pkgs : ?(string) -> json
322 void_pkgs() {
323 curl "https://xq-api.voidlinux.org/v1/query/x86_64?q=$1" | jq '.data'
324 }
325
326 ## Colorful man
327 ## man : string -> string
328 man() {
329 # mb: begin blink
330 # md: begin bold
331 # me: end bold, blink and underline
332 #
333 # so: begin standout (reverse video)
334 # se: end standout
335 #
336 # us: begin underline
337 # ue: end underline
338
339 LESS_TERMCAP_md=$'\e[01;30m' \
340 LESS_TERMCAP_me=$'\e[0m' \
341 LESS_TERMCAP_so=$'\e[01;44;33m' \
342 LESS_TERMCAP_se=$'\e[0m' \
343 LESS_TERMCAP_us=$'\e[01;33m' \
344 LESS_TERMCAP_ue=$'\e[0m' \
345 command man "$@"
346 }
347
348 ## new experiment
349 ## x : string list -> unit
350 x() {
351 cd "$(~/bin/x $@)" || kill -INT $$
352 }
353
354 ## ocaml repl
355 ## hump : unit -> unit
356 hump() {
357 ledit -l "$(stty size | awk '{print $2}')" ocaml $@
358 }
359
360 ## search howtos
361 ## howto : unit -> string
362 howto() {
363 cat "$(find ~/arc/doc/HOWTOs -mindepth 1 -maxdepth 1 | sort | fzf)"
364 }
365
366 _yt() {
367 local -r base_dir="$1"
368 local -r uri="$2"
369 local -r opts="$3"
370
371 local -r yt=youtube-dl
372 local -r id=$("$yt" --get-id "$uri")
373 local -r title=$("$yt" --get-title "$uri" | sed 's/[^А-Яа-яA-Za-z0-9._-]/_/g')
374 local -r dir="${base_dir}/${title}--${id}"
375
376 mkdir -p "$dir"
377 cd "$dir" || kill -INT $$
378 echo "$uri" > 'uri'
379 "$yt" $opts -c --write-all-thumbnails --write-description --write-info-json "$uri"
380 }
381
382 yt_audio() {
383 local -r uri="$1"
384 _yt "${DIR_YOUTUBE_AUDIO}/individual" "$uri" '-f 140'
385 }
386
387 yt_video() {
388 local -r uri="$1"
389 _yt "${DIR_YOUTUBE_VIDEO}/individual" "$uri"
390 }
391
392 gh_fetch_repos() {
393 local -r user_type="$1"
394 local -r user_name="$2"
395
396 curl "https://api.github.com/$user_type/$user_name/repos?page=1&per_page=10000"
397 }
398
399 gh_clone() {
400 local -r gh_user_type="$1"
401 local -r gh_user_name="$2"
402
403 local -r gh_dir="${DIR_GITHUB}/${gh_user_name}"
404 mkdir -p "$gh_dir"
405 cd "$gh_dir" || kill -INT $$
406 gh_fetch_repos "$gh_user_type" "$gh_user_name" \
407 | jq --raw-output '.[] | select(.fork | not) | .clone_url' \
408 | parallel -j 25 \
409 git clone {}
410 }
411
412 gh_clone_user() {
413 gh_clone 'users' "$1"
414 }
415
416 gh_clone_org() {
417 gh_clone 'orgs' "$1"
418 }
419
420 gh_clone_repo() {
421 gh_username=$(echo "$1" | awk -F / '"$1 == "https" && $3 == github.com" {print $4}')
422 gh_dir="${DIR_GITHUB}/${gh_username}"
423 mkdir -p "$gh_dir"
424 cd "$gh_dir" || kill -INT $$
425 git clone "$1"
426 }
427
428 work_log_template() {
429 cat << EOF
430 $(date '+%F %A')
431 ==========
432
433 Morning report
434 --------------
435
436 ### Prev
437
438 ### Curr
439
440 ### Next
441
442 ### Blockers
443
444 Day's notes
445 -----------
446 EOF
447 }
448
449 work_log() {
450 mkdir -p "$DIR_WORK_LOG"
451 local -r file_work_log_today="${DIR_WORK_LOG}/daily-$(date +%F).md"
452 if [ ! -f "$file_work_log_today" ]
453 then
454 work_log_template > "$file_work_log_today"
455 fi
456 vim -c 'set spell' "$file_work_log_today"
457
458 }
459
460 note() {
461 mkdir -p "$DIR_NOTES"
462 vim -c 'set spell' "$DIR_NOTES/$(date +'%Y_%m_%d--%H_%M_%S%z')--$1.md"
463 }
464
465 _bt_devs_infos() {
466 # grep's defintion of a line does not include \r, wile awk's does and
467 # which bluetoothctl outputs
468 awk '/^Device +/ {print $2}' \
469 | xargs -I% sh -c 'echo info % | bluetoothctl' \
470 | awk '/^Device |^\t[A-Z][A-Za-z0-9]+: /'
471 }
472
473 bt_devs_paired() {
474 echo 'paired-devices' | bluetoothctl | _bt_devs_infos
475 }
476
477 bt_devs() {
478 echo 'devices' | bluetoothctl | _bt_devs_infos
479 }
480
481 run() {
482 local -r stderr="$(mktemp)"
483
484 local code urgency
485
486 $@ 2> >(tee "$stderr")
487 code="$?"
488 case "$code" in
489 0) urgency='normal';;
490 *) urgency='critical'
491 esac
492 notify-send -u "$urgency" "Job done: $code" "$(cat $stderr)"
493 rm "$stderr"
494 }
495
496 bar_gauge() {
497 awk "$@" '
498 BEGIN {
499 # CLI options
500 width = width ? width : 80
501 ch_left = ch_left ? ch_left : "["
502 ch_right = ch_right ? ch_right : "]"
503 ch_blank = ch_blank ? ch_blank : "-"
504 ch_used = ch_used ? ch_used : "|"
505 num = num ? 1 : 0
506 pct = pct ? 1 : 0
507 }
508
509 {
510 cur = $1
511 max = $2
512 lab = $3
513
514 cur_scaled = num_scale(cur, max, 1, width)
515
516 printf \
517 "%s%s%s%s", \
518 lab ? lab " " : "", \
519 num ? cur "/" max " " : "", \
520 pct ? sprintf("%3.0f%% ", cur / max * 100) : "", \
521 ch_left
522 for (i=1; i<=width; i++) {
523 c = i <= cur_scaled ? ch_used : ch_blank
524 printf "%s", c
525 }
526 printf "%s\n", ch_right
527 }
528
529 function num_scale(src_cur, src_max, dst_min, dst_max) {
530 return dst_min + ((src_cur * (dst_max - dst_min)) / src_max)
531 }
532 '
533 }
534
535 flat_top_5() {
536 sort -n -k 1 -r \
537 | head -5 \
538 | awk '
539 {
540 cur = $1
541 max = $2
542 name = $3
543 pct = cur / max * 100
544 printf "%s%s %.2f%%", sep, name, pct
545 sep = ", "
546 }
547
548 END {printf "\n"}
549 '
550 }
551
552 internet_addr() {
553 curl --silent --show-error --max-time "${1:=1}" 'https://api.ipify.org' 2>&1
554 }
555
556 status_batt() {
557 case "$(uname)" in
558 'Linux')
559 if which upower > /dev/null
560 then
561 upower --dump \
562 | awk '
563 /^Device:[ \t]+/ {
564 device["path"] = $2
565 next
566 }
567
568 / battery/ && device["path"] {
569 device["is_battery"] = 1
570 next
571 }
572
573 / percentage:/ && device["is_battery"] {
574 device["battery_percentage"] = $2
575 sub("%$", "", device["battery_percentage"])
576 next
577 }
578
579 /^$/ {
580 if (device["is_battery"] && device["path"] == "/org/freedesktop/UPower/devices/DisplayDevice")
581 print device["battery_percentage"], 100, "batt"
582 delete device
583 }
584 '
585 fi
586 ;;
587 esac
588 }
589
590 indent() {
591 awk -v unit="$1" '{printf "%s%s\n", unit, $0}'
592 }
593
594 status() {
595 local -r indent_unit=' '
596
597 uname -srvmo
598 hostname | figlet
599 uptime
600
601 echo
602
603 echo 'accounting'
604
605 printf '%stmux\n%ssessions %d, clients %d\n' \
606 "$indent_unit" \
607 "${indent_unit}${indent_unit}" \
608 "$(tmux list-sessions 2> /dev/null | wc -l)" \
609 "$(tmux list-clients 2> /dev/null | wc -l)"
610
611 echo
612
613 printf '%sprocs by user\n' "${indent_unit}"
614 ps -eo user \
615 | awk '
616 NR > 1 {
617 count_by_user[$1]++
618 total++
619 }
620
621 END {
622 for (user in count_by_user)
623 print count_by_user[user], total, user
624 }
625 ' \
626 | flat_top_5 \
627 | indent "${indent_unit}${indent_unit}"
628
629 echo
630
631 echo 'resources'
632 (
633 free | awk '$1 == "Mem:" {print $3, $2, "mem"}'
634 df ~ | awk 'NR == 2 {print $3, $3 + $4, "disk"}'
635 status_batt
636 ) \
637 | bar_gauge -v width=60 -v pct=1 \
638 | column -t \
639 | indent "$indent_unit"
640
641 echo
642
643 printf '%smem by proc\n' "$indent_unit"
644 ps -eo rss,comm \
645 | awk -v total="$(free | awk '$1 == "Mem:" {print $2; exit}')" '
646 NR > 1 {
647 rss = $1
648 proc = $2
649 by_proc[proc] += rss
650 }
651
652 END {
653 for (proc in by_proc)
654 print by_proc[proc], total, proc
655 }
656 ' \
657 | flat_top_5 \
658 | indent "${indent_unit}${indent_unit}"
659
660 echo
661
662 local _dir temp_input label_file label
663
664 printf '%sthermal\n' "$indent_unit"
665 for _dir in /sys/class/hwmon/hwmon*; do
666 cat "$_dir"/name
667 find "$_dir"/ -name 'temp*_input' \
668 | while read -r temp_input; do
669 label_file=${temp_input//_input/_label}
670 if [ -f "$label_file" ]; then
671 label=$(< "$label_file")
672 else
673 label=''
674 fi
675 awk -v label="$label" '{
676 if (label)
677 label = sprintf(" (%s)", label)
678 printf("%.2f°C%s\n", $1 / 1000, label)
679 }' \
680 "$temp_input"
681 done \
682 | sort \
683 | indent "$indent_unit"
684 done \
685 | indent "${indent_unit}${indent_unit}"
686
687 echo 'net'
688 #local -r internet_addr=$(internet_addr 0.5)
689 #local -r internet_ptr=$(host -W 1 "$internet_addr" | awk 'NR == 1 {print $NF}' )
690
691 #echo "${indent_unit}internet"
692 #echo "${indent_unit}${indent_unit}$internet_addr $internet_ptr"
693 echo "${indent_unit}if"
694 (ifconfig; iwconfig) 2> /dev/null \
695 | awk '
696 /^[^ ]/ {
697 device = $1
698 sub(":$", "", device)
699 if ($4 ~ "ESSID:") {
700 _essid = $4
701 sub("^ESSID:\"", "", _essid)
702 sub("\"$", "", _essid)
703 essid[device] = _essid
704 }
705 next
706 }
707
708 /^ / && $1 == "inet" {
709 address[device] = $2
710 next
711 }
712
713 /^ +Link Quality=[0-9]+\/[0-9]+ +Signal level=/ {
714 split($2, lq_parts_eq, "=")
715 split(lq_parts_eq[2], lq_parts_slash, "/")
716 cur = lq_parts_slash[1]
717 max = lq_parts_slash[2]
718 link[device] = cur / max * 100
719 next
720 }
721
722 END {
723 for (device in address)
724 if (device != "lo") {
725 l = link[device]
726 e = essid[device]
727 l = l ? sprintf("%.0f%%", l) : "--"
728 e = e ? e : "--"
729 print device, address[device], e, l
730 }
731 }
732 ' \
733 | column -t \
734 | indent "${indent_unit}${indent_unit}"
735
736 # WARN: ensure: $USER ALL=(ALL) NOPASSWD:/bin/netstat
737
738 echo "${indent_unit}-->"
739
740 sudo -n netstat -tulnp \
741 | awk -v indent="${indent_unit}${indent_unit}" '
742 NR > 2 && ((/^tcp/ && proc = $7) || (/^udp/ && proc = $6)) {
743 protocol = $1
744 addr = $4
745 port = a[split(addr, a, ":")]
746 name = p[split(proc, p, "/")]
747 names[name] = 1
748 protocols[protocol] = 1
749 if (!seen[protocol, name, port]++)
750 ports[protocol, name, ++seen[protocol, name]] = port
751 }
752
753 END {
754 for (protocol in protocols) {
755 printf "%s%s\t", indent, toupper(protocol)
756 for (name in names) {
757 if (n = seen[protocol, name]) {
758 sep = ""
759 printf "%s:", name
760 for (i = 1; i <= n; i++) {
761 printf "%s%d", sep, ports[protocol, name, i]
762 sep = ","
763 }
764 printf " "
765 }
766 }
767 printf "\n"
768 }
769 }'
770
771 echo "${indent_unit}<->"
772
773 printf '%sTCP\t' "${indent_unit}${indent_unit}"
774 sudo -n netstat -tnp \
775 | awk 'NR > 2 && $6 == "ESTABLISHED" {print $7}' \
776 | awk '{sub("^[0-9]+/", ""); print}' \
777 | sort -u \
778 | xargs \
779 | column -t
780
781 # TODO: iptables summary
782 }
783
784 ssh_invalid_by_addr() {
785 awk '
786 /: Invalid user/ && $5 ~ /^sshd/ {
787 addr=$10 == "port" ? $9 : $10
788 max++
789 by_addr[addr]++
790 }
791
792 END {
793 for (addr in by_addr)
794 if ((c = by_addr[addr]) > 1)
795 printf "%d %d %s\n", c, max, addr
796 }
797 ' \
798 /var/log/auth.log \
799 /var/log/auth.log.1 \
800 | sort -n -k 1 \
801 | bar_gauge -v width="$(stty size | awk '{print $2}')" -v num=1 -v ch_right=' ' -v ch_left=' ' -v ch_blank=' ' \
802 | column -t
803 }
804
805 ssh_invalid_by_day() {
806 awk '
807 BEGIN {
808 m["Jan"] = "01"
809 m["Feb"] = "02"
810 m["Mar"] = "03"
811 m["Apr"] = "04"
812 m["May"] = "05"
813 m["Jun"] = "06"
814 m["Jul"] = "07"
815 m["Aug"] = "08"
816 m["Sep"] = "09"
817 m["Oct"] = "10"
818 m["Nov"] = "11"
819 m["Dec"] = "12"
820 }
821
822 /: Invalid user/ && $5 ~ /^sshd/ {
823 day = m[$1] "-" $2
824 max++
825 by_day[day]++
826 }
827
828 END {
829 for (day in by_day)
830 if ((c = by_day[day]) > 1)
831 printf "%d %d %s\n", c, max, day
832 }
833 ' \
834 /var/log/auth.log \
835 /var/log/auth.log.1 \
836 | sort -k 3 \
837 | bar_gauge -v width="$(stty size | awk '{print $2}')" -v num=1 -v ch_right=' ' -v ch_left=' ' -v ch_blank=' ' \
838 | column -t
839 }
840
841 ssh_invalid_by_user() {
842 awk '
843 /: Invalid user/ && $5 ~ /^sshd/ {
844 user=$8
845 max++
846 by_user[user]++
847 }
848
849 END {
850 for (user in by_user)
851 if ((c = by_user[user]) > 1)
852 printf "%d %d %s\n", c, max, user
853 }
854 ' \
855 /var/log/auth.log \
856 /var/log/auth.log.1 \
857 | sort -n -k 1 \
858 | bar_gauge -v width="$(stty size | awk '{print $2}')" -v num=1 -v ch_right=' ' -v ch_left=' ' -v ch_blank=' ' \
859 | column -t
860 }
861
862 loggers() {
863 awk '
864 {
865 split($5, prog, "[")
866 sub(":$", "", prog[1]) # if there were no [], than : will is left behind
867 print prog[1]
868 }' /var/log/syslog /var/log/syslog.1 \
869 | awk '
870 {
871 n = split($1, path, "/") # prog may be in path form
872 prog = path[n]
873 total++
874 count[prog]++
875 }
876
877 END {
878 for (prog in count)
879 print count[prog], total, prog
880 }' \
881 | sort -n -k 1 \
882 | bar_gauge -v num=1 -v ch_right=' ' -v ch_left=' ' -v ch_blank=' ' \
883 | column -t
884 }
This page took 0.185053 seconds and 3 git commands to generate.