I'm writing my own shell in C and I need to detect EOF (for when I run ./myshell < commands.txt)
commands.txt contains:
ls
pwd
These both run fine separately from within the program. But when I run it with the text file, I get an infinite loop.
In my while(1) loop for the shell, the first thing I do is this:
if (feof(stdin)) { my_exit(); }
my_exit is simply:
void my_exit() {
printf("End of file! Bye\n");
exit(0);
}
Doesn't exit(0) end the program (and the loop)? Why am I getting "End of File! ByeEnd of File! ByeEnd of File! ByeEnd of File! ByeEnd of File! ByeEnd of File! Bye.... etc"
I have also tried doing the fgets == NULL way. Same loop
exit(0)should definitely exit the process. Show us some more code. – Keith Randall Sep 22 '12 at 3:50feof()andferror()are for finding out why an input operation failed. If there's an input error,ferror()will return true andfeof()will return false, which could give you an infinite loop. – Keith Thompson Sep 22 '12 at 3:51