[Linux C]-組合命令字串並呼叫執行
[Linux C]-組合命令字串並呼叫執行
本篇要分享 Linux C-組合命令字串並呼叫執行,有興趣的(C/P)同好,歡迎來(C/P)一下哈哈 ^ ^。
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> usingnamespace std;
int main() {
char buffer [1000]; char Data[500]; int n; FILE *pf;
pf=fopen("world_channel.url","r");
if(pf!='\0') {
fgets(Data,499,pf);
}
n=strlen(Data);
Data[(n-1)]='\0';//刪除換行符號 fclose(pf);
n=sprintf (buffer, "wget \"%s\" -O 123.txt", Data);
system(buffer);
cout << buffer << endl;
return 0; }
|