将mac终端的默认目录改成desktop

问题描述:
每次打开mac 终端后,我要在桌面建立一个文件夹,都需要使用cd desktop这个命令,因为mac默认的工作目录为~,也就是home目录,十分麻烦,于是想把它改成desktop目录。
解决方案:
1 vim ~/.bash_profile
2 在最下方添加 cd /Users/username/desktop

英文描述:
I want my terminal to always start at a certain directory instead of home. How can I do this?
Answers:
adding “cd path/to/directory” in your .bash_profile in your home directory

相关推荐