जवाबों:
GUI के साथ कमांड-लाइन emacs स्थापित है। इसे चलाने के लिए, -nw विकल्प का उपयोग करें। आदमी emacs से एक स्पष्टीकरण:
-nw, --no-window-system
Tell Emacs not to use its special interface to X. If you use
this switch when invoking Emacs from an xterm(1) window, display
is done in that window.
तो कमांड-लाइन से emacs का उपयोग करने के लिए निम्न कमांड चलाएँ:
emacs -nw
यदि आप टाइप नहीं करना चाहते हैं emacs -nw
, तो आप एक उपनाम बना सकते हैं। निम्नलिखित लाइन को अपने ~/.bashrc
या ~/.bash_aliases
:
alias emacs="emacs -nw"
आप इस उपनाम को I / O पुनर्निर्देशन का उपयोग करके एक पंक्ति में जोड़ सकते हैं:
echo alias emacs="emacs -nw" >> ~/.bashrc