shell
文章平均质量分 60
sunnyxiaohu
实践出真知
展开
-
shell程序分析--qcd
这是国嵌中的一个小应用,目的在于我们能快速的在各个目录之间进行切换。 参考资料: 1、http://pan.baidu.com/s/1dEd1ZFz linux+命令行+shell脚本编程宝典 2、http://www.linuxidc.com/Linux/2014-03/97826.htm 为了解决shell子进程的环境不能传给父进程(!) 下面我将进行详细的源码分析: qcde:原创 2016-03-19 22:31:18 · 1731 阅读 · 0 评论 -
shell中for循环总结
关于shell中的for循环用法很多,一直想总结一下,今天网上看到上一篇关于for循环用法的总结,感觉很全面,所以就转过来研究研究,嘿嘿… 1、 for((i=1;i<=10;i++));do echo (expr(expr i *4);done 2、在shell中常用的是 for i in $(seq 10) 3、for i in ls 4、for i in arr[@]5、foriin{原创 2016-03-12 13:27:28 · 3659 阅读 · 0 评论 -
Makefile在大型工程文件中的应用简析
这段时间,再次温习了一遍makefile,想着去分析一下大型工程文件中,是怎么使用makefile的,需要注意那些地方,这里以caffe的makefile做一个简短的分析。 这里给出两个非常棒的参考: http://blog.csdn.net/ruglcc/article/details/7814546/ http://blog.chinaunix.net/uid-790245-id-203原创 2016-05-12 11:43:17 · 4759 阅读 · 1 评论 -
shell中for循环总结
关于shell中的for循环用法很多,一直想总结一下,今天网上看到上一篇关于for循环用法的总结,感觉很全面,所以就转过来研究研究,嘿嘿…1、 for((i=1;i<=10;i++));do echo (expr(expr i *4);done 2、在shell中常用的是 for i in $(seq 10) 3、for i in ls 4、for i in ${arr[@]}…5、for i原创 2017-01-17 20:30:35 · 1018 阅读 · 0 评论