I have something like this
./myProcess.sh &
So I run it in background. When I put ps the proccess name is "bash".
16282 pts/5 00:00:00 bash
Is there any way of starting a process with a name? When I put the command ps, I wanna see the proccess name (and the PID, and other information), not "bash".
Thank you so much