使用 mv 命令,mv oldfile newfile;
或使用cp,cp oldfile newfile ; rm -fr oldfile;
2、压缩与解压缩
tar [options] [file] ...
x :解压 extract
c: 创建压缩 create
t: 查看列表 list
z: 过滤zip压缩文档
tar -xvf xxx.tar 或 tar -xvf xxx.tar dir 或 tar -zxvf xxx.tar
解压缩
tar -cvf xxx.tar file1 file2
原文链接:https://www.f2er.com/centos/378844.html