![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| xargs doubt | shihabvk | Shell Programming and Scripting | 1 | 09-29-2005 11:38 AM |
| find | xargs cat | asal_email | Shell Programming and Scripting | 4 | 03-17-2005 12:16 AM |
| Help with xargs | JimJim | UNIX for Dummies Questions & Answers | 4 | 02-08-2005 07:08 PM |
| use of xargs command | kishorebabu | UNIX for Dummies Questions & Answers | 5 | 10-30-2003 02:53 PM |
| xargs | jpprial | UNIX for Dummies Questions & Answers | 4 | 09-17-2001 09:29 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Question concerning xargs
Hello... I happened upon this site when searching for an answer, and I consider myself a UNIX dummy, so here I am!
Here's my issue: I'm trying to use xargs to strip blank lines out of a group of files and copy the output to another directory, and I just can't figure out the syntax. Here's what I have: xargs -I {} sed '/^$/d' {} < FILE_NAME_LIST.dat Which works, but I can't figure out how to output it. If I use xargs -I {} sed '/^$/d' {} < FILE_NAME_LIST.dat > /some/directory or xargs -I {} sed '/^$/d' {} > /some/directory < FILE_NAME_LIST.dat I get a message stating that it's a directory, as if expecting the output to be a single file. If I use xargs -I {} sed '/^$/d' {} > /some/directory/{} < FILE_NAME_LIST.dat Then everything outputs to a file named '{}', instead of separate files based on the filenames in FILE_NAME_LIST.dat. I'm sure it's just a simple thing, but I can't think through it. Any takers? Thanks in advance! |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|