2012年1月11日

Shell编程 - 流控制

摘要: if语句1 写if语句时不要随意加空格,比如if [ 1<2 ],这是假,而if [ 1 < 2 ]就是真了,因为1和<之间有空格。注意[]与1,2之间的空格是合法的,总结一下就是,Shell中表达式中最好不要加空格,比如a=1, 1<2, 2=2等等,如果加上空格,往往会产生错误。2 使用test,格式:if test expressionif test 1<2then echo "no"else echo "yes"fi 输出yes使用[],格式:if [ expression ] (注意:[]与表达式之间有一个空格)i 阅读全文

posted @ 2012-01-11 14:43 perlman 阅读(485) 评论(0) 推荐(0) 编辑

Shell编程- 文件

摘要: The following is the most frequently used file command1 cat, show file content cat zdd.txt, show content of zdd.txt cat file1 file2 ... filen -n, show line number -b, skip empty line2 wc, count the character, word, and line of a file wc zdd.txt (multiple file is ok, wc file1 file2 ... filen)output: 阅读全文

posted @ 2012-01-11 10:33 perlman 阅读(459) 评论(0) 推荐(0) 编辑

查看UNIX系统版本

摘要: uname -auname -n 查看主机名,等价于hostnameuname -m 查看硬件信息uname -r 查看系统版本号uname -s 查看系统类型经常是uname -sr这样使用,输出如下SunOS 5.10=== 阅读全文

posted @ 2012-01-11 10:04 perlman 阅读(22994) 评论(1) 推荐(1) 编辑

导航