On 2001-07-31, Joe Gaude wrote:

>tar: Error exit delayed from previous errors
>+ find storage -type f -mtime +30 -print
>+ xargs rm -f
>
>
>
>What I can't get to work is file names with spaces in them. Tar splits up
>the names. Can someone tell me how to accomplish this?

Either quote the file names or use "sed" to escape the spaces:

$ find users -type f -mtime +3 -print | sed -e 's/ /\\ /g'




_______________________________________________
Seawolf-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/seawolf-list

Reply via email to