LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   how to get (makefile -f makefile )output into the textview widget in Pygtk (https://www.linuxquestions.org/questions/programming-9/how-to-get-makefile-f-makefile-output-into-the-textview-widget-in-pygtk-293292/)

sailu_mvn 02-22-2005 02:20 AM

how to get (makefile -f makefile )output into the textview widget in Pygtk
 
hi,
i want to display the complete output of the following command intoa single file
and i want to add that file contents to the textview widget.

make -f makefile

how can i get that output into a single file i already tried by using redirection symbol
but it is not giving the errors into that file
anybody having any idea kindly reply me

kulanthaivel 02-24-2005 07:53 AM

for output redirection use
make -f makefile > output.txt

for error redirection use
make -f makefile 2> makeerror.txt

> redirection indicates the redirection of standard output
2> redirection indicates the redirection of standard error.

-Kvel

sailu_mvn 02-28-2005 03:53 AM

tanx for replying

sailu_mvn 02-28-2005 03:57 AM

PyGTK
 
hi,
i am writing code in PyGTK for IDE.
i want to make makefiles at runtime for newly opened files.can anybody help me to make that


All times are GMT -5. The time now is 07:53 AM.