摘要: 1.安装补全命令sudo apt-get install bash-completion2.修改配置文件/etc/profile,添加sudo vi /etc/profile /* */ if [ -f /etc/bash_completion ]; then. /etc/bash_completi 阅读全文
posted @ 2023-08-15 17:04 听风者~ 阅读(197) 评论(0) 推荐(0)
摘要: $ ll -bash: ll: command not found没有ll这个命令。 一行搞定: echo "alias ll='ls -l'" >> ~/.bashrc && source ~/.bashrc 阅读全文
posted @ 2023-08-15 16:40 听风者~ 阅读(208) 评论(0) 推荐(0)