1. ホーム
  2. linux

[解決済み】ZIPファイルを作成すると、ディレクトリ構造を無視するようになる

2022-04-03 01:55:51

質問

このコマンドでZIPファイルを作成したいのですが、どうすればいいですか?

zip /dir/to/file/newZip /data/to/zip/data.txt

これは動作しますが、作成されたzipファイルは生ファイルへのディレクトリを模倣したディレクトリ構造を作成します。これは、私が必要としない多くの余分なフォルダーです。

manページにざっと目を通したり、Googleで検索しても答えが見つかりませんでした。

解決方法は?

を使用することができます。 -j .

-j
--junk-paths
          Store just the name of a saved file (junk the path), and do  not
          store  directory names. By default, zip will store the full path
          (relative to the current directory).