mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 02:29:58 +00:00
TEST grep first) last) REF: 34cec8f5a2
This commit is contained in:
parent
9b74ce631c
commit
03340fb70f
1 changed files with 4 additions and 2 deletions
|
@ -219,8 +219,10 @@ find_line() {
|
|||
|
||||
case "$first_last" in
|
||||
# ignore file #comments
|
||||
first) awk "/$find_str/{ print NR; exit }" $file;;
|
||||
last) awk "/$find_str/{ print NR }" $file | tail -n1;;
|
||||
#first) awk "/$find_str/{ print NR; exit }" $file;;
|
||||
#last) awk "/$find_str/{ print NR }" $file | tail -n1;;
|
||||
first) grep -nE "^[ ]+$find_str" $file | head -n1 | awk -F: '{print $1}';;
|
||||
last) grep -nE "^[ ]+$find_str" $file | tail -n1 | awk -F: '{print $1}';;
|
||||
esac
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue