tar 块大小消息
我正在编写一个解压文件的程序。 消息
$ tar -xf testing_Download.txt1.tar
Tar: blocksize = 12
在执行 untar
tar 命令时,我在下面尝试了以下
$ tar 2>&1 1>/dev/null -xf testing_Download.txt1.tar
Tar: blocksize = 12
:下面是磁盘中不存在的 tar 文件的命令输出
tar 2>&1 1>/dev/null -xf testing_Download.txt12.tar
tar:无法打开testing_Download.txt12.tar
我想知道如何调整 tar 命令,以便我可以识别 untar
已成功执行。
I'm writing a program which untars a file. While doing untar
tar command give message
$ tar -xf testing_Download.txt1.tar
Tar: blocksize = 12
I tried below
$ tar 2>&1 1>/dev/null -xf testing_Download.txt1.tar
Tar: blocksize = 12
Below was command output for tar file which was not present in disk
tar 2>&1 1>/dev/null -xf testing_Download.txt12.tar
tar: cannot open testing_Download.txt12.tar
I want to know how can I tweak my tar command so that I can identify that untar
got executed successfully.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 tar 的返回值。
或者先检查文件是否存在:
Use the return value of tar.
or check if the file is there first: