摘要:javascript禁用backspace回退,shift+backspace前进,F5等刷新页面功能//禁用回退和刷新功能functionforbidBackSpace(){if(((event.keyCode==8)&&//BackSpace((event.srcElement.type!="text"&&event.srcElement.type!="textarea"&&event.srcElement.type!="password")||event.srcElement.re
阅读全文
12 2012 档案
摘要:本博客除了少数自己总结的文章以外全为转载(篇幅非常短的为原创文章)
阅读全文
摘要:crontab中date的%符号需要被转义* * * * * ! [ `date +\%d` -eq 2 ]&& shell.sh
阅读全文
摘要:crontab实行的时候不会读取任何环境变量所以需要自己设置/etc/sysconfig/i18n为系统语言环境设置文件在shell开头导入系统语言环境设置文件中的语言环境变量export LANG="ja_JP.UTF-8"export LC_ALL="ja_JP.UTF-8"
阅读全文
摘要:字符串长度shell>echo ${#string}shell>expr length $stringshell>expr "$string" : '.*'匹配字符串开头的子串长度expr match "$string" '$substring' $substring 是一个正则表达式.expr "$string" : '$substring'索引expr index $string $substring提取子串${string:position} 在$string 中
阅读全文

浙公网安备 33010602011771号