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 があるとします。
/ # Root directory /level1/ # A sub directory /level1/a.file /level1/b.file /level1/... # The rest
tar -xf次のようなコンテンツを展開するようなことをするにはどうすればよいですかlevel1/:
tar -xf
level1/
/a.file /b.file /... # The rest
元の質問のような単純なサブディレクトリが含まれている限り、これを実行できることがわかりました。
tar -xzf mytar.tgz --strip-components 1
tar xf mytar.tar mv /level1/* .