shell
wqx_163
这个作者很懒,什么都没留下…
展开
-
Linux下常用命令总结
linux常用的命令原创 2016-01-30 09:42:21 · 391 阅读 · 0 评论 -
shell变量中再包含变量的情况!
#!/bin/bashERR_0="The $1 is exist!"ERR_1="The $1 is not exist!"function test(){ if [ -e $1 ] ; then return 0 else return 1 fi}test $1ret=$?eval result=\$ERR_$retecho $result执行结果为:CS> ./test.sh /ro原创 2016-01-30 11:06:56 · 921 阅读 · 1 评论 -
程序和shell脚本交互方法
c程序和shell脚本交互方法可使用popen()+fget()方式进行。 举例如下:c程序test.c:#include <stdlib.h>#include <limits.h>#include <stdio.h>#include <errno.h>#include <string.h>int main(int argc ,char *argv[]){ char cmd[5原创 2016-02-02 09:41:56 · 1102 阅读 · 0 评论 -
shell脚本个人总结
个人总结shell脚本使用方法!原创 2016-02-18 13:50:18 · 388 阅读 · 0 评论