MAC OS中使用ll,la命令
在linux下习惯了使用ll、la等ls别名
用mac os发现没有这样的命令,很不方便。
其实只要在用户目录~下建立一个脚本“.bash_profile”,
vim ~/.bash_profile
并输入以下内容即可:
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
然后 source .bash_profile
# ll
total 80
drwxr-x--- 11 root wheel 374 Jan 26 14:56 ./
drwxr-xr-x 29 root wheel 986 Jun 25 2017 ../
-rw-r--r-- 1 root wheel 5 Feb 5 2012 .CFUserTextEncoding
-rw-r--r-- 1 root wheel 54 Jan 26 14:56 .bash_profile
-r--r--r-- 1 root wheel 10 Feb 5 2012 .forward
-rw-r--r-- 1 root wheel 55 Jan 25 14:01 .gitconfig
drwxr-xr-x 3 root wheel 102 Jun 8 2016 .oracle_jre_usage/
-rw------- 1 root wheel 8798 Jan 26 14:53 .sh_history
drwxr-xr-x 3 root wheel 102 Dec 14 2015 .vim/
-rw------- 1 root wheel 15933 Jan 26 14:56 .viminfo
drwx------ 12 root wheel 408 Jan 10 2016 Library/
这样就可以很方便的使用了