摘要:
shell参数 一、参数的处理 方法一 使用for循环,遍历所有的参数,设置相应的标志位 # 对所有的参数预处理,得到参数标志 arg1_flag=0 for arg in ${*} do if [ ${arg} = "arg1" ]; then arg1_flag=1 fi done # 根据参数 阅读全文
摘要:
# 在每一行的行首,添加宽度为3的行号,并与行内容以“,”隔开 awk '$0=sprintf("%3s", NR)","$0' filename 阅读全文
摘要:
# 备份文件 mv /etc/localtime /etc/localtime.bak # 修改为上海时间 ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 阅读全文
摘要:
Eg. # detect timeout control function detect_timeout() { wait_time=8 # start conmand bg ( $* ) & command_pid=$! # start time_out process bg ( sleep ${ 阅读全文