ll 命令是 ls -l 的一个别名,它在大多数现代 Linux 发行版中都可用
ll
ls -l
alias ll='ls -l'
要使这个别名在每次打开新的终端会话时都生效,你可以将上述行添加到你的 ~/.bashrc 或 ~/.bash_profile 文件中。然后,运行 source ~/.bashrc 或 source ~/.bash_profile 使更改生效。
~/.bashrc
~/.bash_profile
source ~/.bashrc
source ~/.bash_profile