mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
13 lines
617 B
Bash
13 lines
617 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
file=$1
|
||
|
sort -r $1.next.ref | grep -v "^3" | grep -v "^2[1-9].*" | grep -v "^20[2-9].*" | grep -v "^201[1-9].*"> $1.prev.ref
|
||
|
sed 's/T.*$//' $1.next.ref | uniq | grep -v "^3" | grep -v "^2[1-9].*" | grep -v "^20[2-9].*" | grep -v "^201[1-9].*" > $1.recurson.ref
|
||
|
|
||
|
diff $file.prev.ref $file.prev.out > /dev/null 2>&1 && rm $file.prev.out;
|
||
|
diff $file.next.ref $file.next.out > /dev/null 2>&1 && rm $file.next.out;
|
||
|
diff $file.recurson.ref $file.recurson.out > /dev/null 2>&1 && rm $file.recurson.out;
|
||
|
|
||
|
|
||
|
# cat $i |grep -v "^2[1-9].*" | grep -v "^20[2-9].*" | grep -v "^201[1-9].*" > $i.new;
|