#include
int chdir(const
char *path);
改變當前的工作目錄到path,path為絕對路徑
成功完成就返回0 否則返回-1,路徑保持不變 errno代表有錯誤
char *newdir="/net/gcs/0455506/ras";
int ret=chdir(newdir);
if(ret!=0)
perror("error:");
else
printf("succeffully changed!\n");
getcwd - get the pathname of the current working directory
#include
char *getcwd(char *buf, size_t size);
得到當前的工作目錄放到buf中,得到的目錄為絕對路徑
成功完成就返回路徑buf,否則返回null指標,errno代表有錯誤
buf為返回時存放路徑的字元指標,size為buf的大小
#include
#include
#include
int main()
linux下工作記錄
linux下檢視快取名內容 先使用 ps ef grep cache 檢視登陸的埠號 telnet 127.0.0.1 11211 get cachename mysql中檢視當前執行的資訊 show processlist vim下 全文替換文字 為 s g 替換每行第一項 s 替換第一行及最後一...
在linux下工作與學習
我們用虛擬機器安裝linux後,如何進行下一步學習呢?首先我們必須使用乙個工具來連線我們虛擬機器的系統,當然你可以直接在虛擬機器裡進行操作,但我個人覺得不怎麼方便,因為是在window的環境下,所以我用putty來連線我的linux,前題是你必須開啟ssh服務,興幸的是,基本上任何發行版都預設有了s...
Linux下工作常用指令彙總
nohupnohup python u t class report.py log.class report.log nohup python t class report.py log.class report.log nohup python t class report.py nohup ro...