quoting output

ZuG

ZuG

Associate
Joined
18 Oct 2002
Posts
683
Location
Cardiff/St Helens
Hi,
Is there a command or an awk line that will take input from a pipe and quote it? Similar to qq in perl...
Thanks,
Mark
 
find . -name delete |xargs rm -r

If the folder has any spaces or other special chars, this obviously wont work. so I could do with something to quote the output of find into xargs. There is make a way to make find output it in quotes?
 
Back
Top Bottom