linux(mac)可以通过alias自定义一些shell命令。以mac下定义
ll
命令为例:
- 编辑.bashrc文件(mac下可能叫.bash_profile):
vim ~/.bash_profile
; - 在最后一行添加:
alias ll="ls -lah"
(注意=两边别有空格); - 保存后执行
source ~/.bash_profile
(或者source ~/.bashrc
)即可;
linux(mac)可以通过alias自定义一些shell命令。以mac下定义
ll
命令为例:
vim ~/.bash_profile
;alias ll="ls -lah"
(注意=两边别有空格);source ~/.bash_profile
(或者source ~/.bashrc
)即可;