Need help with running linux program in background

2019-06-06 Thread AudioGames . net Forum — Off-topic room : zakc93 via Audiogames-reflector
Need help with running linux program in background So I have the following situation. I need to copy files from one server to another. Usually I would do this in a screen but the server does not have screen installed for some reason. The receiving server does, but unfortunately the other

Re: Need help with running linux program in background

2019-06-07 Thread AudioGames . net Forum — Off-topic room : Munawar via Audiogames-reflector
Re: Need help with running linux program in background Hi,You can do it like this:command & URL: https://forum.audiogames.net/post/439241/#p439241 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mai

Re: Need help with running linux program in background

2019-06-10 Thread AudioGames . net Forum — Off-topic room : zakc93 via Audiogames-reflector
Re: Need help with running linux program in background That also takes it to the background immediately, had to use fg to bring it up to type in the password. Which resulted in me realising that the files did copy after all because rsync finished in seconds. Not sure what worked, but maybe

Re: Need help with running linux program in background

2019-06-10 Thread AudioGames . net Forum — Off-topic room : the_ruler_of_dark_forces via Audiogames-reflector
Re: Need help with running linux program in background There's probably much nicer and more elegant way for doing this, but when I want to run a command in the background which produces some output, I usually do this:nohup my_command &When I want to view the last lines of the outp