To find the command / more information associated with a specific process id (PID), do the following: cat /proc/[pid]/cmdline
Tag: find
GIT: Find when a specific string was introduced to a branch
To find when a specific line of code was added to a branch with git, run the following: git log -S “your-string-here” –source –all –stat