To detach a process started in the terminal, you can always add & at the end. For example: npm run evaluation &
Or: nohup bash script.bash &
After that you can run "jobs", to see the running jobs for that user.
Otherwise you can use "htop" or "ps -ef |grep bash" to find all bash jobs for instance.
References:
https://www.dev2qa.com/how-to-run-node-js-server-in-background/
https://stackoverflow.com/questions/4018154/how-do-i-run-a-node-js-app-…
https://medium.com/idomongodb/how-to-npm-run-start-at-the-background-%E…
Keywords: service