ChinaUnix.net
相关文章推荐:

windows shell 编程

偶喜欢编程也喜欢linux 但刚刚起步哈 想在windows下学习shell 所以在找一个windows下的编程环境 找到一个vi improved 可能也是vim吧 呵呵 搞不请他们什么关系 但提示缺少peal56。dll 恳请各位高手指点了 有好的软件吗??

by linshienjay - Shell - 2004-08-10 01:31:27 阅读(1529) 回复(3)

相关讨论

请问windows下想用shell编程,有没有在线的网站可以用。 cygwin这个可以么?

by speforapp - Shell - 2012-09-02 01:03:23 阅读(6829) 回复(20)

使用其他操作系统用户希望能运行UNIX类型的脚本能在他们的系统上运行, 因此也希望能在这本书里能学到这方面的知识. 来自Cygnus的 Cygwin 软件结合来自Mortice Kern的 MKS软件包(MKS utilities) 可以给windows添加shell脚本的兼容. 见:http://www.linuxsir.org/main/doc/abs/abs3.7cnhtm/winscript.html 另:可以用以下windows软件学习Linux/UNIX: (1)Cygwin。很多朋友都知道。如果是为了学习shell编程和C,而且机器不是特别快...

by aaronwong - Linux文档专区 - 2006-09-20 02:16:26 阅读(901) 回复(0)

NT Systems Administrator (windows related) 工作地点:上海市 工作年限:五年以上 请联系MSN:[email]cn_recruit@yahoo.com.cn[/email] 特殊要求:必须懂UNIX,shell编程是必须的 职位描述: You will help in the management of a global IT infrastructure, to ensure system uptime and daily delivery of systems to defined SLAs. This infrastructure will include Microsoft windows 2000 , windows Server 2003, Acti...

by peter999 - Shell - 2006-05-31 11:26:51 阅读(2742) 回复(12)

想知道shell脚本中,要想读取一个文件里的tab键,回车键该怎么办,再写一个文件,例如C语言程序,换行时末尾就有回车字符,第二行就有tab字符,我该怎么识别出来呢?求解

by zhuguoguo - Shell - 2015-12-23 20:40:15 阅读(865) 回复(2)

楼主刚刚笔试的一道题,还是想上来问问解法: 给出一个字符串:aodhpdona 判断该字符串中最先重复两次的字符,输出该字符。

by linux小小菜鸟 - Shell - 2014-09-11 09:24:14 阅读(3376) 回复(26)

#!/bin/sh -f cat $1|while read LINE do echo $LINE done #!/bin/sh -f cat $argv【1】|while read LINE do echo $LINE done 为什么前者能正确执行,后者却不能?

by abc881105 - Shell - 2014-01-06 11:35:40 阅读(2484) 回复(4)

本帖最后由 linux小小菜鸟 于 2013-11-16 13:48 编辑 想问一下,网上有没有那种可以做shell编程练习的东西,还是大家看完书都是下一些练习题来实践的吗?

by linux小小菜鸟 - Linux新手园地 - 2013-11-24 20:53:47 阅读(1414) 回复(4)

谁能推荐下shell书籍??

by tt_yy123 - Shell - 2011-11-25 22:58:27 阅读(1570) 回复(1)

shell脚本程序不是很复杂,他是按行解释的,脚本程序总是以 #!/bin/sh 开始,他通知shell使用系统上的Bourne shell解释器。其中#是注释。 当编辑好脚本程序后,要使脚本程序可执行,只需修改脚本程序的权限,命令如下: chmod +x filename 然后输入: ./filename 来执行脚本程序。 一个简单的例子: $cat first #!/bin/sh echo "you are welcome to use bash." echo "current work directory is $PWD" echo "you are ...

by getfuture - Shell - 2011-05-10 15:48:29 阅读(1687) 回复(6)

这句语句的作用是什么? size=$(echo $line | awk '$1 >2000000{print $1}')

by gswen - Linux系统管理 - 2010-09-09 22:40:48 阅读(1537) 回复(1)