On 11/14/06, Maxim Vexler <[EMAIL PROTECTED]> wrote: [snip]
san-svn:/var/lib/svn# for pair in `awk '/^[^[].+[^\n]$/ {print $1, $3}' passwd.fake`; do xargs "$pair" | echo; done san-svn:/var/lib/svn# for pair in `awk '/^[^[].+[^\n]$/ {print $1, $3}' passwd.fake`; do xargs "$pair" | echo -; done -
Correction: The xargs line should look some thing like: san-svn:/var/lib/svn# for pair in `awk '/^[^[].+[^\n]$/ {print $1,$3}' passwd.fake`; do echo "$pair" | xargs echo ; done user1 password1 user2 password2 But as you can see, it still does not give the request output. -- Cheers, Maxim Vexler "Free as in Freedom" - Do u GNU ? ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]