在 Linux 下习惯使用 ll、la、l 等ls别名的童鞋到 mac os 可就郁闷了~~

其实只要在用户目录下建立一个脚本“.bash_profile”,

vim .bash_profile

并输入以下内容即可:

alias ll='ls -alF'

alias la='ls -A'

alias l='ls -CF'

保存后,执行

source  .bash_profile

相关文章:

  • 2022-12-23
  • 2021-12-23
  • 2022-01-30
  • 2021-09-30
  • 2022-12-23
  • 2021-11-26
  • 2021-12-07
猜你喜欢
  • 2021-09-13
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
  • 2021-08-15
  • 2021-12-23
  • 2021-10-17
相关资源
相似解决方案