KornLearner
Programmer
Keyword search for "1>" turns up over 3000 results..
My shell script is using ksh. Part of it is running a program that outputs to the terminal, I would like that output to be appended to a log file that the script is already outputing to. If I change it so that the line reads
the log file is completly over written by the output of the command.
Is anyone aware of a way to have it be appended instead of overwriting?
My shell script is using ksh. Part of it is running a program that outputs to the terminal, I would like that output to be appended to a log file that the script is already outputing to. If I change it so that the line reads
Code:
program 1>logfile
Is anyone aware of a way to have it be appended instead of overwriting?