質問

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