Which script runseverytime firefox is turned on?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Which script runseverytime firefox is turned on?
# 1  
Old 10-26-2010
Which script runseverytime firefox is turned on?

which script runseverytime firefox is turned on?
is it a bash script?
# 2  
Old 10-26-2010
Code:
ps -eaf  | grep -i firefox

Code:
ptree  <pid>

or
Code:
pstree <pid>

then see if you can identify the script and/or daemon that initiate the pgm
# 3  
Old 10-27-2010
Code:
ptree $(pgrep firefox) # pstree on Gnu/Linux

Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script for Starting Firefox?

Presently I have a powershell script (windows only, of course) that enumerates all the instances of "Internet Explorer" running on my machine and if at least one exists, the script creates a new tab in that instance with the URL I have provided. If no instances of Internet Explorer are running, one... (1 Reply)
Discussion started by: siegfried
1 Replies

2. Shell Programming and Scripting

Script reading from file and send to firefox

Hi everbody, i have a little problem. i want to know how can i read from a txt file parametes and send it to a firefox http link. all that in shell script EXAMPLE- the file 1.txt contains: server1.com : google,yahoo,alex,cnn server2.com : resdf,walsdfa,yndf,asdf server3.com :... (11 Replies)
Discussion started by: zigizag
11 Replies

3. UNIX for Advanced & Expert Users

Finding process that turned on ports

I have 2 identical solaris 10 servers that are simply apache servers, running a version of apache I installed. # uname -a SunOS wilber 5.10 Generic_147440-25 sun4u sparc SUNW,Sun-Fire-V245 I did a netstat on one of the servers and see 2 ports that are on. These are only on on one of the... (2 Replies)
Discussion started by: csross
2 Replies

4. UNIX and Linux Applications

vnc freezes when monitor turned off and on

Hi, i have some issues with the vnc viewer or vmware-player/console. Always, when the Monitor turns of by it self or by me pushing it, the Viewer freezes. But the connection stays online, when i change to console or an other xscreen (strg+alt+Fx) and go back to the screen with vnc it works... (0 Replies)
Discussion started by: headless
0 Replies

5. UNIX for Dummies Questions & Answers

find files with SUID bit turned on

I'm writing a script that will search for files with the SUID bit turned on, and put the list in a file called id.txt i read that files with the SUID bit turned on are chmod'd to 4000, so i tried: find / -perm 4000 > id.txt also various others such as -perm 4777 etc etc but it found nothing... (1 Reply)
Discussion started by: SoVi3t
1 Replies

6. Solaris

Can this be disabled? interface turned of when console cable plugged in.

Whenever I plug a console cable into the back of my sunfire v240 it automatically turns of bge0 which is the interface that connects to my network and the only interface i use on the box (and it stays shutdown until reboot). Is there anyway to stop this from happening or can someone please explain... (12 Replies)
Discussion started by: kingdbag
12 Replies

7. UNIX for Dummies Questions & Answers

Need Shell script for getting Firefox Browser Version

Hi, How to write a script for finding out firefox version in our linux machine? Could you please share the same? I am using Red Hat Linux machine. Thanks, Kammy (2 Replies)
Discussion started by: kjannu
2 Replies
Login or Register to Ask a Question