find 命令:查找文件
例:find ./ -type d -name "0002010*"|xargs rmdir ;
在当前目录在查找符合条件的目录文件,并将它们删除;
chown :修改文件属主
例:chown cxdi:bea /app
设置app目录属主为cxdi
chmod :修改文件属性
例:chmod 755 /app
设置app目录文件属性,可读写
ftp:
因为使用SecureCRT模拟终端,当ftp不上时,使用如下:
例:sftp 输入密码后可直接get或put
目录拷贝:scp -r .
kill: 杀掉进程
例:一般先查看进程使用:ps -ef|grep cxdi 再kill掉
kill -9 123456
mkdir : 创建目录
例:mkdir imglogs
rm:删除目录
例:rm -r imglogs
其实相关参数可使用help查看
tar :打包
例:tar -cvf file file.tar 打包
tar -xvf file.tar 解压
阅读(594) | 评论(0) | 转发(0) |