Linux 提高操作效率之 tab 命令补全
最近在使用阿里云 ECS 时,发现 Centos 无法进行 tab 补全,特别影响操作效率,本文简单记录下 Linux 下的 tab 命令补全功能,希望对 Linux 初学者有所帮助。
安装
Linux 最小化安装时,是没有 tab 命令补全的,需要自己手动安装。
# 安装
$ yum -y install bash-completion
# 重新登录生效
命令补全
默认情况下,在 Linux 中提供下列补全功能:
- 变量补全
- 用户名补全
- 可执行命令补全
- 文件名和目录补全
- 主机名补全
变量补全
# echo 在 $ 符号后按两次 tab 将显示所有可用的变量
$ echo $[tab] [tab]
用户名补全
# su 在 “- ” 符号后,按两次 tab 将显示所有用户名
$ su - [tab] [tab]
# 同上,按两次 tab 将显示所有用户名
$ cd ~[tab] [tab]
注意:用户名是从 /etc/passwd 文件中获取的。
可执行命令补全
在执行命令时,如果找到单个匹配项的可执行文件,则一个 tab 就会将可执行命令自动补全。
$ ls -lt
总用量 5736
-rwxr-xr-x 1 nginx nginx 5872560 3月 24 15:33 nginx
# ./n 之后按一次 tab 将补全可执行命令:./nginx
$ ./n[tab]
当找到多个匹配项时,则两个 tab 将会显示可用命令。
$ ./yum[tab] [tab]
yum yum-builddep yum-config-manager yum-debug-dump yum-debug-restore yumdownloader yum-groups-manager
文件名和目录补全
与可执行命令补全类似,找到单个匹配项时,一个 tab 自动补全,两个 tab 列出所有匹配项。
$ ls -lt
总用量 80
-rw-r--r-- 1 nginx nginx 6542 3月 26 21:06 nginx.conf
drwxr-xr-x 2 root root 4096 3月 26 20:59 site-enable
drwxr-xr-x 2 nginx nginx 4096 3月 24 15:33 ssl
-rw-r--r-- 1 nginx nginx 2656 3月 24 15:33 nginx.conf.default
-rw-r--r-- 1 nginx nginx 636 3月 24 15:33 scgi_params.default
-rw-r--r-- 1 nginx nginx 636 3月 24 15:33 scgi_params
-rw-r--r-- 1 nginx nginx 664 3月 24 15:33 uwsgi_params.default
-rw-r--r-- 1 nginx nginx 664 3月 24 15:33 uwsgi_params
-rw-r--r-- 1 nginx nginx 1077 3月 24 15:33 fastcgi.conf.default
-rw-r--r-- 1 nginx nginx 1077 3月 24 15:33 fastcgi.conf
-rw-r--r-- 1 nginx nginx 1007 3月 24 15:33 fastcgi_params.default
-rw-r--r-- 1 nginx nginx 1007 3月 24 15:33 fastcgi_params
-rw-r--r-- 1 nginx nginx 5231 3月 24 15:33 mime.types.default
-rw-r--r-- 1 nginx nginx 5231 3月 24 15:33 mime.types
-rw-r--r-- 1 nginx nginx 3610 3月 24 15:33 win-utf
-rw-r--r-- 1 nginx nginx 2837 3月 24 15:33 koi-utf
-rw-r--r-- 1 nginx nginx 2223 3月 24 15:33 koi-win
# 在cat n 之后按一次 tab 键,会自动补全 cat nginx.conf
$ cat n[tab]
# “cd ” 之后按一次 tab 键,会
$ cd [tab]
$ cd s[tab]
site-enable/ ssl/
# 当有很多文件要显示时,会显示以下警告消息
$ ls -l /etc/[tab] [tab]
Display all 194 possibilities? (y or n)
主机名补全
# ssh 在 @ 符号后,按两次 tab 键,获取要连接的主机名
$ ssh root@ [tab] [tab]
# 同上,按两次 tab 键,获取要连接的主机名
$ scp nginx.conf nginx@ [tab] [tab]
注意:主机名是从 /etc/hosts 文件中获取的。
查看已有的命令行补全
# 查看已有的命令行补全
$ complete | more
complete -F _minimal
complete -F _filedir_xspec oodraw
complete -F _filedir_xspec elinks
complete -F _filedir_xspec freeamp
complete -F _longopt split
complete -F _longopt sed
complete -F _longopt ld
complete -F _longopt grep
complete -j -P '"%' -S '"' jobs
complete -d pushd
complete -F _minimal sh
complete -F _filedir_xspec playmidi
complete -F _longopt mv
complete -F _known_hosts rlogin
complete -F _service service
complete -b help
complete -A stopped -P '"%' -S '"' bg
complete -F _filedir_xspec cdiff
complete -F _filedir_xspec bibtex
complete -F _filedir_xspec rgview
complete -F _filedir_xspec realplay
complete -F _filedir_xspec xine
complete -F _filedir_xspec xpdf
complete -F _longopt strip
complete -F _longopt pr
complete -F _longopt grub
complete -F _longopt gperf
complete -F _known_hosts ftp
complete -o filenames -F _yu_debug_dump yum-debug-dump.py
complete -o filenames -F _yu_builddep yum-builddep
complete -o filenames -F _yu_repoclosure repoclosure
complete -o filenames -F _yu_repo_rss repo-rss
complete -F _filedir_xspec oowriter
complete -F _filedir_xspec chromium-browser
complete -F _filedir_xspec gqmpeg
complete -F _filedir_xspec tex
complete -F _filedir_xspec zathura
complete -F _filedir_xspec lzegrep
complete -F _longopt m4
complete -F _command time
--More--
# complete 命令详情
$ man complete
另外,complete 可以让自己写的程序也支持自动补全功能,目前我没有此需求,需要时再研究。
Linux 提高操作效率之 tab 命令补全的更多相关文章
- CentOS 安装tab命令补全
CentOS 安装tab命令补全 1. 安装epel 源 yum -y install epel-release 2. 加快yum速度 yum -y install yum-plugin-fastes ...
- Python tab 命令补全,以及 vim 补全
在python 命令行中,使用补全 python 查看 packages 的目录 可用 sys.path 查看. /usr/lib/python2.7/site-packages vim tab.py ...
- CentOS7系统tab命令补全
在新安装的CentOS7系统中,如果没有安装命令补全的话,在systemctl管理服务的时候就没法用tab来自动补全,因此在安装完系统后,我们要再安装命令补全这个软件: yum -y install ...
- ubuntu tab命令补全失效
主要是由于环境变量设置出了问题,修改/etc/environment即可. sudo nano /etc/environment 修改后source /etc/environment
- shell介绍、命令历史、命令补全和别名、通配符、输入输出重定向
第5周第5次课(4月20日) 课程内容: 8.1 shell介绍8.2 命令历史8.3 命令补全和别名8.4 通配符8.5 输入输出重定向 8.1 shell介绍 使用yum+管道方式查看zsh和ks ...
- Linux命令之tab 键补全
tab 键补全 tab 键可以实现命令及路径等补全,提高输入效率,避免出错 命令补全 用户给定的字符串只有一条惟一对应的命令,直接补全, 两次Tab会给出列表 内部命令: 外部命令:bash根据PAT ...
- Linux使用退格键时出现^H + Tab键命令补全失效/方向键失效 + ls文件夹和文件没有颜色
删除问题 安装kalilinux使用普通用户的的时候按退格键无法实现删除功能 解决的办法有两个 一改变快捷键: 使用Ctrl+Backspace组合键可以实现删除功能 ctrl + backspace ...
- linux命令补全 忘记命令只记得开头
linux的shell不仅提供上下箭头来翻阅历史使用过的命令,还提供命令补全功能. 例如,你想创建一个文件夹,只记得是m开头的命令,此时可以: ①输入m ②按键盘上的Tab键两次 (有可能还出现这句话 ...
- Linux centos7 shell 介绍、 命令历史、命令补全和别名、通配符、输入输出重定向
一.shell介绍 shell脚本是日常Linux系统管理工作中必不可少的,不会shell,就不是一个合格管理员. shell是系统跟计算机硬件交互使用的中间介质,一个系统工具.实际上在shell和计 ...
随机推荐
- idea的ktorm框架代码生成器插件
*:first-child { margin-top: 0 !important; } .markdown-body>*:last-child { margin-bottom: 0 !impor ...
- [math] Codeforces 597A Divisibility
题目:http://codeforces.com/problemset/problem/597/A Divisibility time limit per test 1 second memory l ...
- postgre安装和使用(R&Python)
安装postgre http://helianthus-code.lofter.com/post/1dfe03e0_1c68233aa 这里选C更好 这里口令密码输入就是黑的 我装的时候反复报错,查了 ...
- OpenCV-Python 鼠标作画 | 八
目标 了解如何在OpenCV中处理鼠标事件 您将学习以下功能:cv.setMouseCallback() 简单演示 在这里,我们创建一个简单的应用程序,无论我们在哪里双击它,都可以在图像上绘制一个圆. ...
- AJAX完全解读
本文讲AJAX相关的知识全部讲解了一遍.要想入门,选择这篇文章完全够用 本文的知识图谱: AJAX的用处: 在没有AJAX之前,每次从服务端获取数据都要刷新页面(也就是同步请求),这十分的麻烦.比 ...
- React源码解析——ReactAPI
一.API背景 api的具体转化关系 可以通过到https://babeljs.io/repl/网站去将我们创建的Jsx进行实时的转译 const React = { Children: { map, ...
- 2.用eclipse创建maven Web
一.其他步骤与上一个博客相同,故不赘述,这里要记得选war→Finish 二.在项目上右键选Properties 三.搜索到Project Facets,把勾取消掉,点Apply 四.重新勾选后出现以 ...
- 使用RandomString方法后,结果返回相同的随机数解决办法
所遇问题: 在做超市管理系统的登录项目时,在对“随机数的产生”出现一个问题,在产生多个随机数的时候,出现了产生了多个一样的随机数,具体代码如下: /// <summary> /// 生成随 ...
- Javascript判断图片是否存在
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/stri ...
- 相见恨晚的 Git 命令动画演示,一看就懂!
虽然 Git 是一个强大的工具,但是我觉得大部分人都会同意我说的:它也可以是一个--噩梦!我一直觉得,使用 Git 的时候把操作过程在脑海里视觉化会非常有用:当我执行某个命令的时候,分支之间是如何交互 ...