Answers:
叫做zip
。
这会将文件添加file
到存档中file.zip
:
zip file.zip file
当然,要添加更多文件,只需将它们添加为命令的参数即可。查看man zip
更多选项。
通常,您会希望跳过那些讨厌的.DS_Store
文件,例如将整个文件夹压缩folder
为folder.zip
:
zip -vr folder.zip folder/ -x "*.DS_Store"
Copyright (c) 1990-2008 Info-ZIP
。developer.apple.com/legacy/library/documentation/Darwin/…–
man zip
要完全按照Finder命令压缩文件的方式压缩文件,请使用:
ditto -c -k --sequesterRsrc --keepParent src_directory archive.zip
详情请参阅man ditto
:
The command: ditto -c -k --sequesterRsrc --keepParent src_directory archive.zip will create a PKZip archive similarly to the Finder's Compress function- ality.