am trying to run a nohup process to be in the background. The process is firing successfully but for some reason its creating a nohup.out file in the location where I fire the process.
nohup bash -c "./manage.py celeryd -B -E -l DEBUG &> ../../logs/celeryd_beat.nohup &> ../../logs/celeryd_beat.err" &
Is there a way so i can make the nohup outputs into ../../logs/celeryd_beat.nohup?
regards,
Try