Operating System - Linux
1753719 Members
4912 Online
108799 Solutions
New Discussion юеВ

details of the background process in Vb

 
Swati Anand
New Member

details of the background process in Vb

I have an Vb executable thats executing a batch file. Also parallely there might be another background process running that is referring to another older batch file. I want to check which background process is there thats running the older batch file.
2 REPLIES 2
avizen9
Esteemed Contributor

Re: details of the background process in Vb

Hello Swati,
have you tried
ps -ef

you can also grep process by
ps -ef | grep
dirk dierickx
Honored Contributor

Re: details of the background process in Vb

VB, batch files? this smells like windows to me, none of which works on linux.