Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
小伙伴们可以看看以下内容:
tar cf foo.tar foo/ bar/ tar cf foo.tar a.txt b.txt tar -cf foo.tar foo/
那3行命令和这个一样吗?
tar cf foo.tar foo/
实际上,是的。
由于在三人组中,您每次都使用cor-c选项创建新鲜的存档文件,因此只有最后一个重要(a)。
c
-c
所以归结为以下两个是否等效:
tar -cf foo.tar foo/ tar cf foo.tar foo/
它们是:-前面的c是可选的。
-
(a)除非您umask以一种奇怪的方式设置目录权限和设置,否则您可以创建文件但不能覆盖它们:-)
umask