Can you make nohup.out get created only on errors without manually specifying the file name?
Can you make nohup.out get created only on errors without manually specifying the file name? Can you make nohup ./file $1 $2 & (which runs ./file in the background) create nohup.out only for errors and not for standard output? But please without manually specifying nohup.out i.e. nohup ./file $1 $2 >/dev/null 2>nohup.out & Also, the …