Linux学习总结
xiaobao
这个作者很懒,什么都没留下…
展开
-
Linux Shell 通配符、元字符、转义符,正则表达式使用实例介绍
Linux Shell 通配符、元字符、转义符使用实例介绍说到shell通配符(wildcard),大家在使用时候会经常用到。下面是一个实例:1234[chengmo@localhost ~/shell]$lsa.txt b.txt c.old #2?转载 2012-12-26 14:50:10 · 6033 阅读 · 0 评论 -
linux的作业控制(job control)
http://blog.csdn.net/tsingyee/article/details/6116376转载 2012-12-27 11:45:52 · 751 阅读 · 0 评论 -
puts()函数和printf函数的区别
puts()函数只用来输出字符串,没有格式控制,里面的参数可以直接是字符串或者是存放字符串的字符数组名。printf()函数的输出格式很多,可以根据不同格式加转义字符,达到格式化输出。puts()函数的作用与语句printf("%s\n",s);的作用形同。 例子:①:#include int main( void ) {转载 2013-08-06 03:41:43 · 1294 阅读 · 0 评论