I Have a SCP upload script which uploads the files on the remote host. I am trying to run this script as background process so it can be even work when I am not logged into session.
I am trying to use nohup
it doesn't work properly as soon as I close the session the files stops uploading to the remote server but I can still see that the script process is still running in back ground but no files are being uploaded.
I use this Command : nohup sh /path_to_Script/script.sh
and as well make sure that there is only one script or process running and there is no duplication of same running script.
please help.