Debian支持ll、cl等自定义命令

  • 别名可以在bashrc上追加再应用即可,一行搞定:
echo "alias cl='clear'" >> ~/.bashrc && source ~/.bashrc
echo "alias ll='ls -l'" >> ~/.bashrc && source ~/.bashrc