我的mac OSX bash_profile文件

来源:互联网 发布:室内温度检测软件 编辑:程序博客网 时间:2024/06/05 09:09

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.

  1. Start up Terminal
  2. Type "cd ~/" to go to your home folder
  3. Type "touch .bash_profile" to create your new file.
  4. Edit .bash_profile with your favorite editor (or you can just type "open -e .bash_profile" to open it in TextEdit.
  5. 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=1export LSCOLORS=ExFxBxDxCxegedabagacadalias ls='ls -GFh'export CFLAGS=-Qunused-argumentsexport CPPFLAGS=-Qunused-arguments



http://redfinsolutions.com/blog/creating-bashprofile-your-mac


0 0