I have a script written this way on shell script
function test1(){ command1 };
function test2(){ command2 };
function test3(){ command3 };
I use the &
on shell script to run those functions daemonized writting test1 & test2 & test3
But I want to do the same thing on Python. Is there a way to do it using any of python built-in functions and not using the "daemonize" library?
EDIT: I think I should have written it better. I can see now that "background" is the better word for the question. My intention was to join what I read here with the python command to make something daemonized-like. tripleee comment already answer it for me.
Thank everybody who left a comment and sorry for the mistake.
I can't give points or add a comment since I don't have enough reputation.