我有文件sorted.txt
:
$cat sorted.txt
bash
fosh
hack
hack
如果我这样做uniq
:
$uniq sorted.txt
bash
fosh
hack
如果我这样做,uniq -z
我会得到:
$uniq -z sorted.txt
bash
fosh
hack
hack
即在uniq -z
我得到重复!uniq sorted.txt
我期待和的输出的唯一区别uniq -z sorted.txt
是分隔字符。
为什么我会重复输入uniq -z
?