22 Jan
2005
22 Jan
'05
15:49
Lars, On Saturday 22 January 2005 01:09, Lars Haugseth wrote:
On Saturday 22 January 2005 02:47, Randall R Schulz wrote:
U,
...
Then my NUL byte technique will work (I think)
% find ... |tr '\n' '\0' |xargs -0 cmd fixedArgs...
No need to pipe through 'tr':
$ find <directory> -type f -print0 | xargs -0 md5sum > checksums.txt
Ah, yes. Now that you mention it, I dimly remember this option, but didn't think of it when it would be most useful.
Lars Haugseth
Randall Schulz