यूनिक्स सिस्टम में (जिनमें से ओएस एक्स एक है), कमांड लाइन में प्रोग्राम के विकल्प दिए जाते हैं, जो सामान्य रूप से "-" से पहले होते हैं। इसलिए, उदाहरण के लिए, एक निजी सत्र के साथ फ़ायरफ़ॉक्स चलाने के लिए, एक टर्मिनल खोलें और दर्ज करें:
$ firefox -private
यदि आप इसे डिफ़ॉल्ट बनाना चाहते हैं, तो हर बार जब आप फ़ायरफ़ॉक्स चलाते हैं, तो आप एक BASH उपनाम बना सकते हैं। फ़ाइल को संपादित करें .profile
अपने उपयोगकर्ता के होम डायरेक्टरी में और इस लाइन को जोड़ें:
alias firefox="firefox -private"
एक बार जब आप उस फ़ाइल को सहेज लेते हैं, तो हर बार जब आप फ़ायरफ़ॉक्स चलाते हैं तो आप इसे वांछित विकल्पों के साथ चलाएंगे।
अंत में, फ़ायरफ़ॉक्स के लिए उपलब्ध कमांड लाइन विकल्पों की एक सूची प्राप्त करने के लिए दौड़ें firefox -h
एक टर्मिनल से। लिनक्स पर आउटपुट निम्न है:
$ firefox -h
Usage: firefox [ options ... ] [URL]
where options include:
X11 options
--display=DISPLAY X display to use
--sync Make X calls synchronous
--g-fatal-warnings Make all warnings fatal
Firefox options
-h or -help Print this message.
-v or -version Print Firefox version.
-P <profile> Start with <profile>.
-migration Start with migration wizard.
-ProfileManager Start with ProfileManager.
-no-remote Do not accept or send remote commands; implies -new-instance.
-new-instance Open new instance, not a new window in running instance.
-UILocale <locale> Start with <locale> resources as UI Locale.
-safe-mode Disables extensions and themes for this session.
-jsconsole Open the Error console.
-browser Open a browser window.
-new-window <url> Open <url> in a new window.
-new-tab <url> Open <url> in a new tab.
-preferences Open Preferences dialog.
-search <term> Search <term> with your default search engine.
-private Enable private browsing mode.
-private-toggle Toggle private browsing mode.
-setDefaultBrowser Set this app as the default browser.
alias
?