문제

To clarify the question: I need to open a terminal window, execute a C program (which takes input from a file) and save its output to a file.

I know that if I do "./program < input.txt > output.txt", I'll get what I want.

For some reason, if I do "gnome-terminal -e ./program < input.txt > output.txt", the program opens on a different terminal window, but doesn't take the input from input.txt nor saves the output to the output.txt file.

What am I doing wrong?

도움이 되었습니까?

해결책

You need bash to redirect input and output in new gnome terminal.

    gnome-terminal -e 'bash -c "./program < input.txt > output.txt"'

다른 팁

Try gnome-terminal -e "./program < input.txt > output.txt"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top