I am using adb commands to manage processes on android phone.
I am able to kill a specific process by the command
adb kill "PID" (PID is the process ID)
and the process gets killed.
But when I start it using the command
adb start "PID"
It doesnt start the process.
And the process that I wish to start is in /system/bin folder and I dont know what the package or activity name is of that process. All I know is "PID" and "User" of the process.
Is there any command that starts a specific process on android device?