Dear nixcraft forum,
I have some commands looped on the bashrc… yes i have to suppress the output. So i do of course
$long_wait_command > /dev/null 2>&1
It really work but, when i do login on the terminal/creating new session… oh crap it wait it till finished.
So i insert & because it is waiting too long… looks great it works. But after i login an do some other command, on the shell report that the job command is done. How do I surpress/silent/hide the report to the shell that this job done?
Is this own command will help https://www.cyberciti.biz/faq/unix-linux-disown-command-examples-usage-syntax/ ? Will it be waiting till the job done or just remove the running job?