shell(1)...
时间:2010-08-17 来源:luoshenhappy99
grep [-acinv] '搜寻字符串' filename 其中a将binary档案以text的方式搜寻数据,c计算找到搜寻字符串的次数,i忽略大小写,n行号,v反选
diff file1 file2 比较两个文件内容是否不一样
shell:
如果一行放不下,就以/开始下一行。将一个script执行有两种方法(1)chmod 755 filename 此种将文件的属性改为可执行(2)sh filename直接将该file通过sh执行
[test @test test]# declare [-afirx]
参数说明:
-a :定义为数组 array
-f :定义为函数 function
-i :定义为整数 integer
-r :定义为『只读』
-x :定义为透过环境输出变量
范例:
[test @test test]# declare -i a=3
[test @test test]# declare -i b=5
[test @test test]# declare -i c=$a*$b
[test @test test]# echo $c
15 <==变成数字啰! ^_^
number1=2*3+5*13-32+25
declare -i number2=2*3+5*13-32+25
echo "Your result is ==> $number1"
echo "Your result is ==> $number2"
[root @test test]# sh test03-declare.sh
Your result is ==> 2*3+5*
read 的功能就是『依据您在键盘输入的结果 input 到变量内容中』