Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
COBOL | awk | C言語 | D言語 | GO言語 | Lua | Vim |
bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
tcsh | Ruby | Groovy | Java | C# | VBScript | JavaScript |
Io言語 | Python | Erlang | Scala | VB.NET | Excel/VBA | PHP |
Tcl | Haskell | OCaml | PowerShell | Windows | Unix/Linux |
Linuxコマンド > zip,unzip ZIP圧縮解凍
|
|
ファイルを指定してZIP圧縮
~$ ls fromsample1.txt
sample2.txt
~$ zip to.zip from/sample1.txt
~$ ls *.zip
to.zip
ZIPファイルの内容を表示
~$ ls fromsample1.txt
sample2.txt
~$ unzip -l to.zip
Archive: hoge.zip
Length Date Time Name
--------- ---------- ----- ----
0 2003-03-02 11:53 from/
10 2003-03-02 11:57 from/sample1.txt
140 2003-03-02 11:57 from/sample2.txt
--------- -------
150 3 files
to.zip
ディレクトリを指定してZIP圧縮
~$ ls fromsample1.txt
sample2.txt
~$ zip -r to.zip from
~$ ls *.zip
to.zip