Conversation
Notices
-
#bash handles spaces in file names well enough that I often forget how much old school Unix-ish utilities like #xargs hate it so much.
Thursday, 20-Nov-08 21:05:04 UTC from web-
@bkuhn single quotes are your friend
-
@jmca, re: single quotes to solve 'space in file names' problems: what about find <stuff> -print | xargs ... that's where I hit it often.
-
@bkuhn: See -print0 for find and -0 for xargs.
-
@bkuhn find <stuff> -print0 | xargs -0
-
@bkuhn web interface is easy (go to a different URL, or have a greasemonkey script that rewrites the URL twitter's POSTs to). SMS is harder.
-
@paulv, @jasonriedy, I've oversimplified problem so as to make it trivial. find, xargs are buried in diff'nt open()'s inside a Perl script.
-