My program outputs state of computations to the terminal and includes quite a bit of information. I would like to, if possible, color code parts of the text.

I have seen how it can be done in Bash and C++ by referring to threads on this site. However, I have not been able to use any of that to achieve the same result in Fortran (modern). For example, I tried this sample code, which I thought should work:

PROGRAM test
    PRINT*, 'A great color is \033[95m pink \033[0m.'
END PROGRAM test

I would have expected the output to be "A great color is pink" where pink is colored pink. Instead I get "A great color is \033[95m pink \033[0m." I don't understand what I am missing.

If I replace the print line in the code with: CALL EXECUTE_COMMAND_LINE("echo 'A great color is \033[95m pink \033[0m.'") then I get the output as desired. However I wouldn't want to keep calling on echo from my code. Is there any way I can get colored output?

Thanks!

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

The escape character representation as '\033' doesn't appear to be working for you. I don't have fortran handy to check, but you might try explicitly using the character instead of the c-style escaping by calling the char conversion function, i.e., make the actual character by calling char(27) and build it into your output string in the correct places.

link|improve this answer
3  
Don's right. The Fortran standards leave details of interactions with the terminal deliberately quite vague, so there's no guarantee that non-printable characters will do the right thing, but as a practical matter, with the gcc, intel, and pathscale f90 compilers, the following line works for me: print *, 'A great color is '//achar(27)//'[95m pink '//achar(27)//'[0m.' – Jonathan Dursi Jun 19 '11 at 17:13
Thanks Don and Jonathan! It worked for me. It is certainly a very strange way to do! – deepak Jun 19 '11 at 18:50
feedback

I have just stumbled onto the foul module/library which seems to do exactly what you want. I haven't used it yet but will be giving it a go soon as having formatted terminal output from my Fortran programs would be very useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.