मेरी init.el फ़ाइल में कोड की निम्नलिखित दो पंक्तियाँ हैं:
(setq shell-file-name "bash")
(setq shell-command-switch "-ic")
मैंने शेल स्क्रिप्ट dmenu_path का उपयोग करके निष्पादनयोग्य की एक सूची प्राप्त करने के लिए निम्नलिखित स्क्रिप्ट को निष्पादित करने का प्रयास किया।
(defun dmenu-path-out ()
(shell-command-to-string "dmenu_path"))
मैं निम्नलिखित त्रुटि देखता हूं:
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
[
0ad
...
उपयोग करते समय मैं उस त्रुटि को वापस आने से कैसे रोक सकता हूं shell-command
?