Is there a way to implement/use lambda functions in bash? I'm thinking of something like:
$ someCommand | xargs -L1 (lambda function)
|
1
|
|
|
|
|
|
I don't know of a way to do this, however you may be able to accomplish what you're trying to do using:
This will also be faster, as you won't be creating a new process for each line of text. [EDIT 2009-07-09] I've made two changes:
From my observations, together these changes preserve everything except literal NUL (ASCII 0) characters on each input line. |
||||||||||||
|
|
|
What about this?
(assumes each argument is a line, otherwise change delimiter) |
||
|
|