I am using this command to get the process ID of another command:
ps aux | grep 7000.conf | awk \'{print $2}\'
This will return two PIDs:>
ps aux | grep "[7]000.conf" will work as well.
ps aux | grep "[7]000.conf"