How to use NULL (\0) as the delimiter in GNU sort

前端 未结 3 1133
轻奢々
轻奢々 2021-02-19 04:16

i am looking for a way to sort the results of find returning a number of directories correctly for further processing in a bash script. since filenames can\'t conta

3条回答
  •  Happy的楠姐
    2021-02-19 05:03

    -t is the field separator. If you want to use \0 as the line separator then you need to use -z.

提交回复
热议问题