MacOS下给终端添加alias
目前macos默认shell是zsh,简单记录下给zsh添加自定义命令。
打开终端,进入用户目录。
cd ~
我的机器默认没有.zshrc
的配置文件,新建一个。
touch .zshrc
然后在.zshrc
中添加alias。
alias ll='ls -l'
alias la='ls -al'
保存退出,然后载入配置文件
source .zshrc
到这里就完成配置了~
吐槽下,macos自带中午拼音输入法竟然连波浪线~都区分了中英文的不同格式,中文和英文下~的编码不一样,导致markdown格式下中文格式的~不能被正常识别。淦。