Hacker Times
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
BrandonM
on Sept 6, 2012
|
parent
|
context
|
favorite
| on:
Unix Commands I Abuse Every Day
Note that xargs actually takes a
whitespace
-delimited list. This often leads to problems when a filename has a space in it. To fix it, you should either use:
find ... -print0 | xargs -0 ...
or:
... | xargs -d'\n' ...
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search: