wok-next view pm-utils/stuff/patches/grep-x.patch @ rev 21578

updated davfs2 (1.5.4 -> 1.5.6)
author Hans-G?nter Theisgen
date Tue Jun 23 15:33:53 2020 +0100 (2020-06-23)
parents
children
line source
1 --- a/pm/functions.in
2 +++ b/pm/functions.in
3 @@ -215,8 +215,22 @@
4 for p in "$@"; do
5 echo "$p" >> "$PARAMETERS.rm"
6 done
7 - # let grep do the dirty work.
8 - grep -vxFf "$PARAMETERS.rm" "$PARAMETERS" > "$PARAMETERS.new"
9 + # let awk do the dirty work.
10 + cat "$PARAMETERS" | awk -v VAR="$(cat "$PARAMETERS.rm")" '
11 + {
12 + del=0
13 + split(VAR,rm)
14 + for(i in rm)
15 + {
16 + if($1==rm[i]){
17 + del++
18 + }
19 + }
20 + if(del==0)
21 + {
22 + print $1
23 + }
24 + }' > "$PARAMETERS.new"
25 fi
26 cp -f "$PARAMETERS.new" "$PARAMETERS"
27 }