bash 默认没有定义 alias ll='ls -l',一些 shell 比如 zsh 和 fish 会定义这个
alias ll='ls -l'
ll 好像是个别名,要定义的
alias ll='ls -l' 然后就可以用了。可以把这个加入到profile里面,这样每次登录都能用