"Michael Alston" <[EMAIL PROTECTED]> wrote:
> Question:
>
> Did the options for the Unix sort command change?

Yes.  Some time ago.

> Why does:
>
>    % sort -5 myfile
>
> no longer sort myfile by keying off of column 5?

That precise syntax never worked.
However, syntax like this used to be the norm:

    sort +3 -5 myfile

Now, while that is still supported, you usually have to
go through hoops (set the _POSIX2_VERSION envvar to some small number)
to make it work.  For details, read "info coreutils standards"
and then the section on sort.


_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to