Mac OS

来源:互联网 发布:淘宝的电脑主机能买吗 编辑:程序博客网 时间:2024/05/16 18:08

Terminal

环境变量

/etc/profile        #全局,所有用户,登录读取/etc/bashrc         #全局,所有用户,bash shell执行时读取~/.bash_profile     #用户级,设置一些环境变量

使用ll la l

ls命令参考资料

用户目录下编辑 .bash_profilealias ll='ls -AlF'alias la='ls -A'alias l='ls -CF'source .bash_profile

brew

首页

  • 安装

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • brew install wget安装wget

0 0