-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Luca Gesmundo on 10/13/2008 1:21 AM: > cut -d\ -f3
You are invoking "cut" "-d -f3", that is, providing the four characters " -f3" as the argument for -d. What you probably wanted was either of: cut -d\\ -f3 cut -d'\' -f3 which shell quoting then turns into "cut" "-d\" "-f3" (just a single backslash to -d, and a separate argument for -f3). - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkjzQ0UACgkQ84KuGfSFAYBU2QCfaSR/KMLUp8cJC4qpt5i1L48k SYQAn3hwB1nDczxWRLzATHl0kC0Udnzj =FaSL -----END PGP SIGNATURE----- _______________________________________________ Bug-coreutils mailing list Bug-coreutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-coreutils