在我的程序的某些时候,我想运行另一个程序(从stdin获取参数),我在文本文件中准备了参数。然后,我想将程序的输出写入另一个文件。
我是linux,fork等新手。试图打破我的头,没有成功。 我读到我应该将我的输入文件与stdin和输出文件关联到stdout,就像这样。
这是我写的代码:
//move on all sub-directories .....
while((indir=readdir(dir))!=NULL)
{
pid_t pid;
DIR *currDir;
struct dirent *cfile;
char *fullpath, *outpath, *outputpath;
//ignore hidden files
if(indir->d_name[0]=='.')
continue;
//create the full path of c file
fullpath=(char*)calloc(strlen(dirpath)+strlen(indir->d_name)+1,sizeof(char));
strcpy(fullpath,dirpath);
fullpath=strcat(fullpath,indir->d_name);
fullpath=strcat(fullpath,"/");
//open current directory
currDir=opendir(fullpath);
//get the c file, ignore hidden files
while((cfile=readdir(currDir))!=NULL)
{
if(cfile->d_name[0]!='.')
break;
}
/*compile c file*/
//child process
if((pid=fork())==0)
{
fullpath=realloc(fullpath, sizeof(char)*(strlen(fullpath)+strlen(cfile->d_name)+1));
outpath=(char*)calloc(strlen(fullpath)+strlen(OUT_NAME)+1,sizeof(char));
strcpy(outpath,fullpath);
strcat(fullpath,cfile->d_name);
strcat(outpath,OUT_NAME);
execl("/usr/bin/gcc", "/usr/bin/gcc", "-o", outpath, fullpath,NULL);
}
else
{
wait(NULL);
}
//create output file path
outputpath=calloc(strlen(fullpath)+strlen(OUTPUTFILE_NAME)+1,sizeof(char));
strcpy(outputpath,fullpath);
strcat(outputpath,OUTPUTFILE_NAME);
inputpath=(char*)calloc(strlen(buff)+1,sizeof(char));
//get input file path from buffer
for(j=0,buffIndex++;buff[buffIndex]!='\n';buffIndex++,j++)
{
inputpath[j]=buff[buffIndex];
}
////Untill here works perfectly////
//child process
if((pid=fork())==0)
{
fullpath=realloc(fullpath, sizeof(char)*(strlen(fullpath)+strlen(OUT_NAME)+1));
strcat(fullpath, OUT_NAME);
//re-open input file and associate it with stdin
freopen(inputpath, "r", stdin);
//re-open output file and associate it with stdout
freopen(outputpath, "w", stdout);
execl(fullpath,inputpath, NULL);
}
else
{
wait(NULL);
}
}
* inputpath是我用程序输入准备的文件的完整路径。
* outputpath是我想保存程序输出的文件的完整路径。
我肯定做错了,因为我收到以下错误:
/home/aviad/workspace/test/dean/input.txt~: file not recognized: File truncated
collect2: error: ld returned 1 exit status
/home/aviad/workspace/test/jjang/fileoutput.txt: file not recognized: File truncated
collect2: error: ld returned 1 exit status
有任何帮助吗?
答案 0 :(得分:2)
您的帖子中没有足够的信息来确认,但我怀疑您是因为选择与构建工具相同的名称而被咬,例如ld
,代表您的计划名称。如果你这样做并运行
ld 1.txt 2.txt
很有可能你没有执行你的 ld
,而是执行GNU链接器或类似的(/usr/bin/ld
)。通常,系统目录在.
之前被搜索,如果.
完全在PATH
中。这可以避免一些令人不快的意外,比如你在一个名为ls
的二进制文件的目录中运行ls
,你可能仍然需要/bin/ls
。
这就是为什么在你的cwd中以./
为前缀运行的东西是个好主意,所以你要说:
./ld 1.txt 2.txt
并且系统ld
将不再是候选人。您可以使用which ld
和which ./ld
确定将运行哪一个。
所以,实际上你根本就没有运行你的程序。这已经咬了一些我认识的人,包括我自己。我的第一个unix程序被命名为“test”;)。
编辑:根据输出,名称cc
可能是比ld
更好的候选人,但同样的想法。
编辑:
根据您的更新,您似乎正在调用gcc
,并阅读目录内容。似乎没有检查您正在编译的文件甚至是.c
文件,您确定不在这些文本文件所在的目录中调用此代码吗?