in reply to Re^2: sortmd5 script
in thread sortmd5 script
I would just do a one-liner ..
.. and re-direct to an output file as necessary.alex@foo:~/tmp$ cat >data.in 443..29D test.avi 563..D93 xyz AB2..FFE a.file alex@foo:~/tmp$ perl -e 'while(<>){chomp;($md5,$file)=split;$data{$fil +e}=$md5;}foreach(sort keys %data){print"$data{$_} $_\n";}' <data.in AB2..FFE a.file 443..29D test.avi 563..D93 xyz
|
|---|