摘要:
for命令 基本语法格式 for var in list do commands done 也可以写成 for var in list; do commands done 读取列表中的值 shijianzhongdeMacBook-Pro:part_13 shijianzhong$ ./test1 阅读全文
摘要:
linux grep命令详解 简介 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 Unix的grep家 阅读全文
摘要:
12.1使用if-then语句 最基本的结构化命令 if command then command fi 这里的command必须exit的返回值是0 shijianzhongdeMacBook-Pro:part_12 shijianzhong$ ./test1.sh /Users/shijianz 阅读全文