On 9 December 2013 19:51, Jürgen Haas <[email protected]> wrote: > cat /etc/passwd | perl -ane -F: 'print $F[0],"\n" if $F[2] > 499' > > Generates the following error message: > > Warning: Use of "-F" without parentheses is ambiguous at -e line 1. > syntax error at -e line 1, near "F:" > Execution of -e aborted due to compilation errors.
cat /etc/passwd | perl -aF: -ne 'print $F[0],"\n" if $F[2] > 499' Arghh! -e must precede the expression -- yesterday was not a good day. K Kahlil (Kal) Hodgson GPG: C9A02289 Head of Technology (m) +61 (0) 4 2573 0382 DealMax Pty Ltd (w) +61 (0) 3 9008 5281 Suite 1415 401 Docklands Drive Docklands VIC 3008 Australia "All parts should go together without forcing. You must remember that the parts you are reassembling were disassembled by you. Therefore, if you can't get them together again, there must be a reason. By all means, do not use a hammer." -- IBM maintenance manual, 1925 -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
