脚本语言
天下江南
Follow Excellence. Success will chase you.
展开
-
Linux shell 脚本示例
1.使用tput和sleep从0计数到40: #!/bin/bash #Filename: sleep.sh echo -n Count: tput sc count=0; while true; do if [ $count -lt 40 ]; then let count++; sleep 1; tput rc tput ed echo -n $count; else exit 0; fi原创 2013-08-19 10:40:33 · 1137 阅读 · 0 评论 -
正则表达式&Perl入门
。。原创 2013-08-06 23:02:27 · 545 阅读 · 0 评论