Linux
文章平均质量分 67
昉钰
这个作者很懒,什么都没留下…
展开
-
Linux管道学习(无名管道)
调用失败返回-1,成功返回0;调用成功时该函数会创建一个单向的管道用于进程之间的通讯,返回的管道包含读端和写端,其中fd[0]用于读,fd[1]用于写,写到fd[1]的数据会被内核保存到缓冲区,直到fd[0]读走数据。原创 2024-01-25 18:14:21 · 1334 阅读 · 0 评论 -
gcc介绍
g 编译时添加调试信息。2 gcc -S 编译 gcc -S hello.i -o hello.s。1 预处理 gcc -E hello.c -o hello.i。展开宏、头文件,替换条件编译,删除注释、空行、空白。3 汇编 gcc -c hello.S -o hello.o。-o 指定输出文件为hello.i。gcc编译有四个步骤:预处理、编译、汇编、链接。-c 只做预处理、编译、汇编,得到二进制文件。-S 只做预处理、编译。原创 2023-12-17 20:05:31 · 68 阅读 · 0 评论 -
Linux grep | ps
2 ps -auxtotal 28ls -l?...ytotal 28ls -l?...ytotal 28。原创 2023-12-16 15:51:26 · 91 阅读 · 0 评论 -
Linux Find
1 find ./ -type 'l'zfang@ubuntu:~/Desktop/test$ find ./ -type 'l'./utils./utils2./fileIOTest/open.soft./fileIOTest/fcntl.out.soft./fileIOTest/dict.softzfang@ubuntu:~/Desktop/test$2 find ./ -maxdepth 1 -name '*.c'zfang@ubuntu:~/Desktop/test$ find ./原创 2023-12-16 11:27:31 · 83 阅读 · 0 评论