LoginSignup
1
0

More than 1 year has passed since last update.

tarで解凍先ディレクトリを指定する【tar xf hoge.tar.gz --one-top-level=mydir --strip-components=1】

Last updated at Posted at 2023-03-08

新しいtarの場合

tar xf hoge.tar.gz --one-top-level=mydir --strip-components=1

古いたぁの場合

mkdir mydir
tar xf hoge.tar.gz --directory=mydir --strip-components=1

たぁの中身

tar tf hoge.tar.gz
hoge/
hoge/fuga.html
hoge/foo.css
hoge/bar.js
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0