"Steve" <[EMAIL PROTECTED]> wrote:
>  /CODE/
>
>  >ping -n 1 whrcsdp05922 | awk "/TTL/ {print $3}" | awk -F: "{print
> $1}" | xargs --verbose set pcip=
>
>  /ENDCODE/
>
>  The result is:
>
>  set pcip= 10.60.1.77
>  xargs: set: No such file or directory

set is a command shell builtin, and xargs can only run external
commands.  Something like this might work:

ping -n 1 whrcsdp05922 |
awk "/TTL/ {print $3}" |
awk -F: "{print \"set pcip=\" $1}" |
cmd

Of course, the variable will be set only in that invocation of cmd, so
whatever depends on the variable should probably be included in the
commands written by the second awk.


paul


_______________________________________________
help-gnu-utils mailing list
help-gnu-utils@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-utils

Reply via email to