MacOS11的软件安装工具Homebrew的安装(扒来的内容)
忘记来源了~~~
1、打开命令行模式窗口
右键 启动台→其他→单击终端。
2、常用命令
查看目录:ls
创建目录:mkdir
创建/编辑文件:vi
3、安装软件安装工具homebrew
cd /home/
mkdir brew
cd brew
vi install.sh
install.sh的代码如下:
#!/bin/bash
# We don't need return codes for "$(command)", only stdout is needed.
# Allow `[[ -n "$(command)" ]]`, `func "$(command)"`, pipes, etc.
# shellcheck