bzip2:输入文件 file.txt 还有 1 个 link

bzip2: Input file file.txt has 1 other link

调用时

bzip2 file.txt

我收到此错误消息

bzip2: Input file file.txt has 1 other link

我正在使用OSX,但我认为这个问题不是OSX特有的,所以我在这里问一下。

我的解决方案是复制文件:

cp file.txt tmp
rm file.txt
mv tmp file.txt
bzip2 file.txt

但也许有人可以解释一下?

我使用强制标志解决了它:-f

不知道为什么。