Linux一些指令

备忘。。

~/.bashrc 环境变量文件

xshell5 与本机文件传输 rz接受 sz filename 传输

  watch -n 2 'nvidia-smi'  监视gpu 状态
 
wget 下载单个文件
 wget  http://images.cocodataset.org/zips/train2014.zip
 

给.sh文件添加x执行权限

比如以hello.sh文件为例,chmod u+x hello.sh

运行.sh文件  ./xxx.sh

 

复制文件夹 cp -r  foldername  地址

 

tar 打包

单个文件压缩打包 tar czvf my.tar file1

多个文件压缩打包 tar czvf my.tar file1 file2,...

单个目录压缩打包 tar czvf my.tar dir1

多个目录压缩打包 tar czvf my.tar dir1 dir2

 

tar 解压

tar –xvf file.tar //解压 tar包

tar -xzvf file.tar.gz //解压tar.gz

tar -xjvf file.tar.bz2   //解压 tar.bz2tar –xZvf file.tar.Z //解压tar.Z

 

 

posted on 2017-10-12 16:41  klitech  阅读(111)  评论(0编辑  收藏  举报

导航