LINUX.ORG.RU

История изменений

Исправление yars068, (текущая версия) :

как запаковать ОДИН файл в .zip архив

$ for i in {1..9}; do echo $i >> test.txt ; done
$ cat test.txt 
1
2
3
4
5
6
7
8
9

$ zip -D test.zip test.txt 
  adding: test.txt (stored 0%)

$ ls test*
test.txt  test.zip
$ unzip -l test.zip 
Archive:  test.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
       18  02-27-2019 11:23   test.txt
---------                     -------
       18                     1 file

Исходная версия yars068, :

как запаковать ОДИН файл в .zip архив

$ for i in {1..9}; do echo $i >> test.txt ; done
yars@notecomp:~$ cat test.txt 
1
2
3
4
5
6
7
8
9

$ zip -D test.zip test.txt 
  adding: test.txt (stored 0%)

$ ls test*
test.txt  test.zip
$ unzip -l test.zip 
Archive:  test.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
       18  02-27-2019 11:23   test.txt
---------                     -------
       18                     1 file