Linux 文件操作free 收录于 Linux 2021-08-18 约 159 字 预计阅读 1 分钟 目录 文件夹新建文件新建查看文件或文件夹信息修改权限删除文件压缩文件夹解压文件拷贝文件本地拷贝远程拷贝文件夹新建1 mkdir test 文件新建1 touch test.st 查看文件或文件夹信息1 ls -l test.st 修改权限1 2 # 递归修改为最高权限 chmod -R 777 test 删除文件1 rm -rf test 压缩文件夹1 tar zcvf ./t1.tar.gz test 解压文件1 2 3 4 5 # 解压到当前目录 tar zxvf t1.tar.gz # 解压到指定目录 tar zxvf t1.tar.gz -C /test 拷贝文件本地拷贝1 2 3 4 5 # 拷贝文件 scp t1.tar.gz t2.tar.gz # 拷贝文件夹 scp -r test test2 远程拷贝1 2 3 4 # 拷贝文件 scp ubuntu@txy.frhello.com:/home/ubuntu/t1.tar.gz d:\ # 递归拷贝文件夹 scp -r ubuntu@txy.frhello.com:/home/ubuntu d:\ 警告本文最后更新于 August 18, 2021,文中内容可能已过时,请谨慎使用。Please enable JavaScript to view the comments powered by Gitalk.