Re: [Ilugc] To install firefox extension in command line, How to make commands execute in order

2010-01-04 Thread Saravanan S
Finally got the solution the other way. :)
I packed up the xpi data with the package and Firefox boots with my
extensions as expected.

Thank you all. :)

Saravanan Sundaramoorthy
Red Hat Certified Engineer
+91 99404 32545
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] To install firefox extension in command line, How to make commands execute in order

2009-12-31 Thread Saravanan S
On Thu, Dec 31, 2009 at 10:34 AM, Rajagopal Swaminathan <
raju.rajs...@gmail.com> wrote:

>
> or perhaps && after the command to ensure that the first command
> completed successfully?
>
>
yes, i tried && also.

firefox -install-global-extension xyz.xpi && firefox &

Also i tried using a semicolon ";" between the two commands in a single
line.

firefox -install-global-extension xyz.xpi ; firefox &

It also didn't work.
also used sleep 5 between the two commands, so that the first command would
take its time to finish fully before the next firefox & loads.

firefox -install-global-extension xyz.xpi
sleep 5
firefox &

This also didnt install the extension.
But if i do manually, executing the two commands one by one, it installs
add-on extension into Firefox!!!

Saravanan Sundaramoorthy
Red Hat Certified Engineer
+91 99404 32545
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] To install firefox extension in command line, How to make commands execute in order

2009-12-30 Thread Rajagopal Swaminathan
Greetings,

On Wed, Dec 30, 2009 at 8:49 PM, Yuva raj  wrote:
>>
>> hi
>>

or perhaps && after the command to ensure that the first command
completed successfully?


Regards

Rajagopal
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] To install firefox extension in command line, How to make commands execute in order

2009-12-30 Thread Yuva raj
>
> hi
>
use exit status  $?

> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
>



-- 
Thank You
Best Regards

Yuvaraj L
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] To install firefox extension in command line, How to make commands execute in order

2009-12-28 Thread Sreekanth B
hi

On Mon, Dec 28, 2009 at 9:17 PM, Saravanan S wrote:

>
> firefox -install-global-extension xyz.xpi
>

can u run this from the terminal and pastebin the output please.

- sree
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] To install firefox extension in command line, How to make commands execute in order

2009-12-28 Thread Saravanan S
How to make sure that the commands in a script file gets executed one after
the other, waiting for the previous command to finish. Irrespective of the
time the previous command takes.

I need to install a firefox extension right from command line, and then need
to execute firefox. all inside a startup script.

I could boot up with Firefox installed and it starts up firefox (with my
script) but the extension is not installed.

i need to execute the commands in order, one after the previous one finishes
(successfully or completely or with exit status 0 i dont know exactly)

firefox -install-global-extension xyz.xpi
firefox &

Geeks of ILUGC help me out!!!

Saravanan Sundaramoorthy
Red Hat Certified Engineer
+91 99404 32545
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc