赞
踩
1.在使用Mac电脑终端命令时候我们可能会遇到ls命令可以用,但是ll命令就会提示:-bash: ll: command not found
2.这时候我们可以使用命令行:
open ~/.bash_profile
3.在文件中添加:
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
然后保存一下。
4.执行命令: source .bash_profile
5.在最后检查一波
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。