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/
事実上、はい。
c3 つのグループでは、 orオプションを使用して毎回新しいアーカイブ ファイルを作成しているため-c、最後の 1 つだけが問題になります(a)。
c
-c
したがって、次の2つが同等であるかどうかが問題になります。
tar -cf foo.tar foo/ tar cf foo.tar foo/
の-前cはオプションです。
-
(a)umaskディレクトリのアクセス許可と設定を、ファイルを作成できるが上書きできないような奇妙な方法でセットアップしていない限り:-)
umask