On Fri, Oct 31, 2003 at 11:21:00AM +0100, Hilmar Preusse wrote:
On 29.10.03 Frank Schwidom (schwidom@impernet.de) wrote:
test $( md5sum file1 file2 file3 ... filen | uniq | wc -l ) -eq 1 && echo gleich || echo ungleich ^
an der Stelle vielleicht noch sowas, wie awk '{print $1}'
oder (damit's nicht ein zusätzlicher Programmaufruf wird:
test $(md5sum filea file2 file3 ...fileN | while read a b; do echo $a; done | uniq ...
Heiko