摘要:个人总结shell历史 bourne shell (sh) c shell (csh) korn shell (ksh) 三种shell 都有它们的优点和缺点 bourne again shell (bash), 正如它的名字所暗示的,是 bourne shell 的扩展。bash 与 bourne shell 完全向后兼容,并且在 bourne shell 的基础上增加和增强了很多特性。bash......
摘要:http://bbs.chinaunix.net/forum/viewtopic.php?t=190088匹配html的嵌入代码 代码:<[^>]*>匹配[....]的嵌入码 代码:\[[^]]\\]删除仅由空字符组成的行 代码:sed /^[[:space:]]*$/d filename匹配html标签 代码:/\(<[^>]*>\)/例如:从html文件中剔......
[shell] 微软测试题题目如下:有三个六位数,分别是abcdef.cdefab.efabcd.
a.b.c.d.e.f分别代表一位数,可能是1~9之间的任何一个,但是他们都是不同的数. 【程序编程相关:
tput-转义字符】 【推荐阅读:
tput-颜色】已知这三个六位数满足下列条件: 【扩展信息:
创建屏幕输出-tput基础】 abcdef*2=cdefab cdefab*2=efabcd 问a=?.b=?.c=?.d=?.e=?.f=?
yusuan3.txt
摘要:linux与unix shell编程指南教程
http://www.linuxdiyf.com/viewthread.php?tid=1010&fpage=1刚刚在网上看到。现在在学shell,顺便写个script,让它自动下载这30个pdf$vim autoget#!/bin/bashfor ((a=1;a<=30;a++))doif [ $a -lt 10 ]; then wg......