- tar 压缩包
单个文件压缩打包
tar czvf my.tar file1
多个文件压缩打包
tar czvf my.tar file1 file2,...
单个目录压缩打包
tar czvf my.tar dir1
多个目录压缩打包
tar czvf my.tar dir1 dir2
解包至当前目录:
tar xzvf my.tar
- scp服务器传递
scp -r ./www.tar root@115.xxx.xxx.xx:/webdata/www/
单个文件压缩打包
tar czvf my.tar file1
多个文件压缩打包
tar czvf my.tar file1 file2,...
单个目录压缩打包
tar czvf my.tar dir1
多个目录压缩打包
tar czvf my.tar dir1 dir2
解包至当前目录:
tar xzvf my.tar
scp -r ./www.tar root@115.xxx.xxx.xx:/webdata/www/