Skip to main content
added 5 characters in body
Source Link

To Append output in user defined file you can use >> in nohup command.

nohup php your_command &>>>> filename.out&out 2>&1 &

This command will append all output in your file without removing old data.

To Append output in user defined file you can use >> in nohup command.

nohup php your_command &>> filename.out&

This command will append all output in your file without removing old data.

To Append output in user defined file you can use >> in nohup command.

nohup php your_command >> filename.out 2>&1 &

This command will append all output in your file without removing old data.

Source Link

To Append output in user defined file you can use >> in nohup command.

nohup php your_command &>> filename.out&

This command will append all output in your file without removing old data.