最大化我的市场价值
全部博文(113)
2013年(113)
发布时间:2013-05-06 20:17:41
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-05-06 20:15:09
从一个简单的script出发清除: 清除/var/log下的log文件 1 # 清除 2 # 当然要使用root身份来运行这个脚本. 3 4 cd /var/log 5 cat /dev/null > messages 6 cat /dev/null > wtmp 7 echo "Logs cleaned up.".........【阅读全文】