Pregunta

How do you open the emacs calendar as well as the diary when you start Terminal in Mac OS X with the .bash_profile that I created in my home directory. Any help will be greatly appreciated. Below is my code that I have so far for my .bash_profile:

date
emacs

No hay solución correcta

Otros consejos

This is probably not the best way to do this, but answering your question directly replace the emacs line in .bash_profile with the following:

emacs --eval '(progn (calendar) (diary))'

Depending on what you're doing, it might be better to include the following lines in your .emacs:

(calendar)
(diary)
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top