vfork段错误,求高手指点,多谢
[root@localhost file]# cat vfork.c #include #include #include int main(void) { pid_t pid; if((pid = vfork()) < 0) { …
程序里 使用system 调用 出现异常 情况
我在程序里执行system("cd /home/test/.hehe ; tar cf sn.tar .sn.txt ");然后我把sn.tar 重新解压 发现生成的.sn.txt是空的 但是原来的.sn.txt里是…
求解:关于sed -r '/\n/!G;s/(.)(.*\n)/&\2\1/;//D;s/.//' c.txt的执行过程
cat c.txt 123 234 345 456 sed -r '/\n/!G;s/(.)(.*\n)/&\2\1/;//D;s/.//' c.txt 321 432 543 654 关键是对&和//D的作用不太明白。…
Makefile 联编顺序
如下 all: main main: a.c b.c c.c d.c e.c f.c gcc -Wall -g a.c b.c c.c d.c e.c f.c clean: rm -rf main 想请教的问题是 a.c b.…
makefile简便方法
我们目前知道make file有很多种写法,我想知道的是:为什么大家不采取那中非常简便的方式呢? main:main.o mytool1.o mytool2.o gcc -o main …
.PHONY: clean 是否多余
CC = gcc OBJ = main.o mytool1.o mytool2.o make: $(OBJ) $(CC) -o main $(OBJ) main.o: mytool1.h mytool2.h mytool1.o: mytool1.h mytool2…
makefile是自己写还是autoscan比较好呢?
大家好,我们知道makefile文件可以自己写.也可以用autoscan来自动产生.我想知道的是。如果都可以用autoscan来 产生的话 那我们还有学makefile的必要吗…
有名管道的打开为什么带三个参数,求高手指教
谁能告诉我,open打开有名管道的时候为什么带三个参数 fd=open(FIFO,O_RDONLY|O_NONBLOCK,0); 最后那个0有什么用!不是只有创建的时候open函数才带三…
linux elif问题
在centos中,用vi编写example7文件这段程序 #!/bin/bash #if statement aplication if [ $1="yes" ] then echo "value is yes" elif [ $1="no" ] t…
rpm debuginfo包问题
操作系统:CentOS 5.6 请问:如何把应用程序中用到so动态链接库的debug调试信息打包到rpm的debuginfo包中。 具体情况是这样,原来有个程序,后来我给…