diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-11-07 22:25:44 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-11-07 22:25:44 +0900 |
| commit | ea58186a175b66fa0c1e64231ce0f448b052393f (patch) | |
| tree | 88c850b0c0e463e0212c5fbb0baa4a993f710103 | |
| parent | 570497c90a175bc6605208137832c1bc2e44181e (diff) | |
modified bin/ylog
| -rwxr-xr-x | mac/.local/bin/ylog | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/.local/bin/ylog b/mac/.local/bin/ylog index 87a45c3..254803b 100755 --- a/mac/.local/bin/ylog +++ b/mac/.local/bin/ylog @@ -6,7 +6,7 @@ LOG_DIR="/var/log/nginx" TARGET="all" # "all" means no target filter (show all lines) COUNTRY="all" # all|kr|us SCOPE="all" # all|access|recordings -EXCL_FIREFOX=1 # 1 = exclude Firefox lines by default +EXCL_FIREFOX=0 # 1 = exclude Firefox lines by default EXCLUDES="59.19.56.8" # default exclude pattern ADD_EXCLUDES="" LINE_LIMIT=500 # default number of lines when TARGET=all @@ -64,7 +64,7 @@ while getopts "t:c:s:nx:l:d:h" opt; do t) TARGET="$OPTARG" ;; c) COUNTRY="$OPTARG" ;; s) SCOPE="$OPTARG" ;; - n) EXCL_FIREFOX=0 ;; + n) EXCL_FIREFOX=1 ;; x) ADD_EXCLUDES="${ADD_EXCLUDES} $OPTARG" ;; l) LINE_LIMIT="$OPTARG" ;; |
