REVERT grep first) last) fails all test but awk passes all tests

This commit is contained in:
Mitchell Krog 2019-07-04 09:36:27 +02:00
parent 48df7fa77c
commit 35c982cb50
No known key found for this signature in database
GPG key ID: C243C388553EDE5D

View file

@ -219,10 +219,8 @@ 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) grep -nE "^[ ]+$find_str" $file | head -n1 | awk -F: '{print $1}';;
last) grep -nE "^[ ]+$find_str" $file | tail -n1 | awk -F: '{print $1}';;
first) awk "/$find_str/{ print NR; exit }" $file;;
last) awk "/$find_str/{ print NR }" $file | tail -n1;;
esac
}