Ho le seguenti due righe di codice nel mio file init.el:
(setq shell-file-name "bash")
(setq shell-command-switch "-ic")
Ho provato a eseguire il seguente script per ottenere un elenco di eseguibili utilizzando lo script shell dmenu_path.
(defun dmenu-path-out ()
(shell-command-to-string "dmenu_path"))
Vedo il seguente errore:
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
[
0ad
...
Come posso impedire a bash di restituire quell'errore durante l'utilizzo shell-command
?