全部博文(2759)
发布时间:2013-05-10 06:11:20
Shell特殊字符# 注释1. 表示注释 #注释2. 在引号中间和\#等表示#本身3.echo ${PATH#*:} # 参数替换,不是一个注释4.echo $(( 2#101011 )) # 数制转换,不是一个注释echo "The # here does not begin a comment."echo 'The # here does not begin a comment.'echo The \# here does not begin a comment.echo The .........【阅读全文】
发布时间:2013-04-28 05:53:45
我们知道变量是会被子进程继承的,可以直接使用。有些情况下可能需要继承函数,以方便透明使用,方法非常简单,使用“export -f”,注意参数“-f”,它表示函数的意思,不带参数的export只针对变量。function ifprop(){echo ":$1=$2"}export -f ifprop.........【阅读全文】