刚开始使用 Linux 并练习使用不同的命令,作为学习练习,我尝试使用以下命令将文件附加到我创建的名为“test.tar”的 tar 存档中:
tar rvf test.tar newfile
返回错误:
tar: newfile: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors
我也尝试过:
tar -rvf test.tar newfile
返回了相同的结果。
答案1
尝试做:
echo I will not post any homework questions on Ask Ubuntu > newfile
然后重试,因为它看起来newfile
不存在。(上面的命令创建)