配置行號(hào)
1朦前、臨時(shí)配置:打開文件之后病蛉,命令行模式 [esc]->[shift+":"]->set nu
2平夜、永久配置:root下輸入 vi /etc/vimrc 在任意位置添加 set nu,保存退出汛聚。
opendir搓劫、readdir粟瞬、closedir
#include <stdio.h>
2 #include <dirent.h>
3 #include <unistd.h>
4 #include <string.h>
5
6 int main(int argc,char *argv[]){
7 DIR *dp = opendir(argv[1]);
8 if(NULL == dp){
9 perror("not open");
10 }
11 struct dirent *sdp;
12 while((sdp=readdir(dp))!=NULL){
13 if(NULL == sdp){perror("read failed");}
14 if((strcmp(sdp->d_name,"."))==0)
15 continue;
16 printf("%s\t",sdp->d_name);
17 }
18 char arr[256];
21 closedir(dp);
22 }
sprintf
sprintf(arr,"%s/%s",argv[1],"hello");
將agrv和hello組合成一個(gè)字符串同仆,存儲(chǔ)到arr中。
printf("%s\n",arr);
練習(xí)
遞歸遍歷指定路徑下的目錄 輸出文件名字和size
提示:參照l(shuí)s -R的用法裙品。
進(jìn)程
程序:占用磁盤空間
進(jìn)程:占用系統(tǒng)資源(cpu等)俗批。
并發(fā)
dos系統(tǒng) 單道程序設(shè)計(jì)
多道程序設(shè)計(jì)
pcb 進(jìn)程控制塊
本質(zhì):結(jié)構(gòu)體
進(jìn)程ID
用戶ID和組ID
進(jìn)程狀態(tài):初始狀態(tài) 就緒狀態(tài) 運(yùn)行狀態(tài) 掛起狀態(tài) 終止?fàn)顟B(tài)。
父ID.
信號(hào)
文件描述符表等
創(chuàng)建子進(jìn)程
fork市怎、vfork
getpid
getppid
練習(xí):