Linux
踏踏实实的走
快乐,自信!脚踏实地,一步一个脚印向前走!
展开
-
cygwin必碰问题:No such file or directory
真是为这个问题纠结了我一两天,查了各种资料,根据网上资料,和我现在的结论是一样的...路径映射的问题..就拿我最近在研究Google Protocol Buffer,需要用cygwin编译一个.proto的后缀helloworld.proto文件helloworld.proto的目录:C:\Users\Potter\Documents\work\Protocol Buffer\pr转载 2015-10-16 23:43:56 · 11008 阅读 · 2 评论 -
shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory
今天写了一个shell脚本,然后在执行的时候报错,脚本内容很简单,仅供测试:Shell代码 #!/bin/sh echo "test shell " 具体报错信息如下:Shell代码 [root@localhost test]# ./test.sh -bash: ./test.sh: /bin/sh^M转载 2015-10-14 16:23:19 · 5001 阅读 · 0 评论 -
shell中如何判断两个字符串相等
注意的几点:1、if和[ ]之间要空格。2、[ ]和“ ”之间要空格3、“ ”和=之间要空格,否则都会报错原创 2015-10-16 10:22:35 · 53946 阅读 · 6 评论 -
如何获取shell命令输出的错误信息?
rmmod xxx(xxx为某个ko的名称)系统提示:ERROR:Module xxx ins use这个如何获取“ERROR:Module xxx ins use”?尝试了rmmod xxx > log,无法得到。因为命令执行出错之后,不会再重定向到log文件中解决办法:rmmod xxx >& log试了一原创 2015-10-15 14:26:03 · 16512 阅读 · 1 评论