If you have some CLI commands that generates a massive amount of output in the console, you can avoid it using the following command
nohup php bin/magento module:status
it will create an nohup.out file in which all the output data will be stored
also we can use it the & (&) operator to keep alive the command even if we will logout from the server
php bin/magento Import:import &
hit enter afterwards
Leave a Reply