How to create an empty tgz file?

人走茶凉 提交于 2020-04-13 06:57:28

问题


How to create an empty tgz file? I tried

tar czvf /tmp/empty.tgz --from-file /dev/null
tar: Option --from-file is not supported

回答1:


The switch you're looking for is --files-from or -T:

tar czvf /tmp/empty.tgz --files-from=/dev/null


来源:https://stackoverflow.com/questions/44807644/how-to-create-an-empty-tgz-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!