首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux查寻文件的常用命令

2013-11-09 
linux查找文件的常用命令find?fromDir?-iname?filename?-type?f?-exec?grep?string?{}?\?-printfind

linux查找文件的常用命令

find?fromDir?-iname?"filename"?-type?f?-exec?grep?"string"?{}?\;?-print

find . | grep "filename"

?

svn revert . -R

svn log --stop-on-copy url

svn merge -r 367768:head url --dry-run

?

mount的sh脚本:

#!/bin/bash

df

echo "输入管理员密码:"

sudo /etc/init.d/nfs-common start

sudo mount 10.20.131.157:/home/admin /mnt/efs/www

sudo mount -t nfs -o rw 10.20.131.157:/home/admin/volume_photobank /mnt/photobank

sudo mount -t nfs -o rw 10.20.131.157:/home/admin/volume_product /mnt/product_repository?

sudo mount -t nfs -o rw 10.20.131.157:/home/admin/volume_wsproduct /mnt/wsproduct_repository

echo "mount 成功!"

df

?

umount的sh脚本:

#!/bin/bash

df

echo "输入管理员密码:"

sudo /etc/init.d/nfs-common start

sudo umount /mnt/efs/www

sudo umount /mnt/photobank

sudo umount /mnt/product_repository?

sudo umount /mnt/wsproduct_repository

echo "umount 成功!"

热点排行