문제

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

올바른 솔루션이 없습니다

다른 팁

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)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top