[arch-general] grep
Ralph Corderoy
ralph at inputplus.co.uk
Tue Oct 15 15:16:10 UTC 2019
Hi Silvio,
$ grep ^ */*
de/1.md:date: 2019-10-10
de/2.md:date: 2019-10-12
de/3.md:date: 2019-10-14
de/4.md:date: 2019-10-16
en/1.md:date: 2019-10-10
en/2.md:date: 2019-10-12
en/3.md:date: 2019-10-14
en/4.md:date: 2019-10-16
fr/4.md:date: 2019-10-16
ru/3.md:date: 2019-10-14
ru/4.md:date: 2019-10-16
$
$ grep -hm1 '^date:' */* |
> sort -Vu |
> while read -r d; do
> for l in ??; do
> fgrep -qrx "$d" $l || echo "$d $l"
> done
> done |
> sed 's/^date: //' |
> sort
2019-10-10 fr
2019-10-10 ru
2019-10-12 fr
2019-10-12 ru
2019-10-14 fr
$
--
Cheers, Ralph.
More information about the arch-general
mailing list