A typical install of OS X won't create a .bash_profile for you. When you want to run functions from your command line, this is a must-have.
- Start up Terminal
- Type "cd ~/" to go to your home folder
- Type "touch .bash_profile" to create your new file.
- Edit .bash_profile with your favorite editor (or you can just type "open -e .bash_profile" to open it in TextEdit.
- Type ". .bash_profile" to reload .bash_profile and update any functions you add.
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
alias ls='ls -GFh'
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
http://redfinsolutions.com/blog/creating-bashprofile-your-mac
本文介绍如何在MacOS系统中手动创建.bash_profile文件,并通过该文件设置环境变量、别名等功能,以便更好地利用终端进行命令行操作。
8781

被折叠的 条评论
为什么被折叠?



