diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 05:04:08 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 05:04:08 +0300 |
commit | 9d30b318578f15207f139e5e8750b4db9c2196f2 (patch) | |
tree | 342561e4d09b7f6c857bd8f7e1203fe16c30cbd4 /bin | |
parent | ef9d439652158407f711f7ec24ee60c5d55adf27 (diff) | |
download | arching-kaos-tools-9d30b318578f15207f139e5e8750b4db9c2196f2.tar.gz arching-kaos-tools-9d30b318578f15207f139e5e8750b4db9c2196f2.tar.bz2 arching-kaos-tools-9d30b318578f15207f139e5e8750b4db9c2196f2.zip |
[ak-log] new flag -l: prints last line; use it on tmux-statusbar
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-log | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -49,6 +49,7 @@ if [ ! -z $1 ]; then case $1 in -h | --help) _ak_usage; exit;; -f | --follow) _ak_log_follow; exit;; + -l | --last) _ak_log_last_line; exit;; -g | --grep) _ak_log_grep; exit;; -m | --message) shift; _ak_log_message $*; exit;; -r | --rotate) _ak_log_rotate; exit;; |