mac.jpg
我们发现在Linux操作系统下我们可以使用ll来查看文件夹里面的内容,而在mac系统下不可以,用惯了这个命令,我们可以自己修改下快捷命令,使用ll来替代原本的ls -alh,另外我们还可以根据自己需要添加不同的命令,比如la来替换ls -a等。
操作方法:

  • 使用vim编辑器打开~/.bash_profile如果没有,会自动创建。
    vim ~/.bash_profile
  • 按照以下格式输入

    alias ll='ls -alh'
    alias la='ls -a'
    alias l='ls -cf'
    alias ipython='python3 -m IPython'
  • 保存之后,执行source ~/.bash_profile

最后你再执行ll就不会报错了。

Last modification:October 12, 2020
If you think my article is useful to you, please feel free to appreciate