What I want to do is connect to my server and have Drush (a Drupal command-line program) run a command to start a large data import. To do this I need to SSH into the server first. So I would execute the Drush call. Then I want to be able to shut down my computer and walk away.
Will this continue to run if I do this? Someone has suggested to me that I can just put an ampersand at the end of the command and it will put the command in the background. Will that work?
The reason I ask instead of just test is because this will be a large amount of data and I don't want to start it before I am entirely ready to put it on the server.
Thoughts?