On Thu, 13 Feb 2014, Joseph Herlant wrote:
>
> In order to verify that I didn't forget anything, could you provide me
> the process you used to check duplicated files quickly please?

---8<---
#!/bin/sh

set -eu
#set -x

l=
for f in $(dpkg -L asciidoc); do
        [ -f $f ] || continue
        l="${l:+$l
}"$(sha256sum $f)
done
echo "$l" | sort | uniq --all-repeated=separate --check-chars=64
--->8---


Cheers,

-- 
Cristian


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to