Field delimiter in sort program in freebsd

Bernt Hansson bah at bananmonarki.se
Sat Jan 25 14:13:41 UTC 2014


On 2014-01-25 14:59, Shayan Pooya wrote:
> Hello,
>
> How can I use the ascii character 0xff as the field delimiter for the
> FreeBSD sort program?
> On bash on Linux I use the following:
> $ sort -t $'\xff' -z
> to sort a set of null terminated lines where each field is separated by a
> \xff.
>
> The FreeBSD 10 manual page says it has the -t option, but I am not sure how
> I should give it the option to use a specific character.
>
> On tcsh:
> % sort -t $'\xff'
> Illegal variable name.

$ is a variable, and you have not defined it.
$ by it self means the first word on the line ie sort.

So your line expands to: $ sort -t sort'\xff'

NB I AM NOT A PROGRAMMER!


More information about the freebsd-questions mailing list