pjoshi Posted July 28, 2009 Share Posted July 28, 2009 Hi all, How to find the list of users who have opened the similar application (for eg. soffice.bin) Prasad Quote Link to comment https://forums.phpfreaks.com/topic/167773-solved-list-of-users-who-have-opened-a-similar-application/ Share on other sites More sharing options...
trq Posted July 28, 2009 Share Posted July 28, 2009 ps aux | grep soffice.bin | awk '{print $1}' | uniq Quote Link to comment https://forums.phpfreaks.com/topic/167773-solved-list-of-users-who-have-opened-a-similar-application/#findComment-884741 Share on other sites More sharing options...
pjoshi Posted July 29, 2009 Author Share Posted July 29, 2009 Thanks thorpe it lists all the users. But it also gives some numbers in the list such as 520, 601, 629 etc. Whereas these are not the users. Any idea what are these numbers? Quote Link to comment https://forums.phpfreaks.com/topic/167773-solved-list-of-users-who-have-opened-a-similar-application/#findComment-885635 Share on other sites More sharing options...
trq Posted July 29, 2009 Share Posted July 29, 2009 It shouldn't. Whats the output of.... ps aux | grep soffice.bin ? Quote Link to comment https://forums.phpfreaks.com/topic/167773-solved-list-of-users-who-have-opened-a-similar-application/#findComment-885675 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.