1.打 tar 包
[esuser@hecs-356640 html]$ ls ctc [esuser@hecs-356640 html]$ tar -zcvf index.tar.gz ctc/ [esuser@hecs-356640 html]$ ls ctc index.tar.gz
2.多文件或文件夹 混合打包
tar -zcvf index.tar.gz index.html css/ js/ images/
3.linux打zip
[root@nb linux]# zip -r dir.zip dir文件夹/ file文件 adding: dir文件夹/ (stored 0%) adding: file文件 (deflated 15%) #把文件夹压缩成zip文件 -o:解压并覆已存在的文件 [root@nb linux]# unzip -o dir.zip # unzip -o dir.zip Archive: dir.zip inflating: file文件