How do I create a script?
This may be a stupid question but, I want to create a script that will allow me to open a new session of mozilla without the profile lock problem. The script I want to create is
#!/bin/bash
mozilla -remote 'xfeDoCommand (openBrowser)' || \
( echo ".... running Mozilla" && mozilla )
|