Skip to content
Advertisement

C program prints to terminal instead of file even after using dup2/dup

I’m in an operating systems course and doing assignments with C on Linux. In one of the assignments I was supposed to redirect and output to a file, but for some reason, I keep getting the output in the terminal instead. I tried writing a simple program to do just that and it still didn’t work:

JavaScript

other things I tried :

  1. changing the permissions on the file open (adding O_RDWR)
  2. running on 2 separate PCs – i run mainly on remote desktop to the uni pc for linux but also got VMware on the laptop.
  3. tried using close + dup combo instead on dup2
  4. tried using conditions with perror to see if any step will tip me off as to why it doesn’t work.
  5. tried using STDOUT_FILENO instead of 1 for output

would really appreciate any help on this!

Advertisement

Answer

stdio normally buffers output to stdout — it’s line-buffered when it’s connected to a terminal, fully-buffered when connected to a file. Since you’re not writing any newlines, it will not flush the buffer automatically in either mode. The buffer is flushed automatically when the program exits, at which time it gets written to the last stream that FD 1 is connected to.

Either turn off buffering with setvbuf(), or flush the output explicitly between printf() calls.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement