红联Linux门户
Linux帮助

linux环境下tab自动补全功能

发布时间:2017-03-16 09:18:29来源:linux网站作者:constant_zyh188
也许你是老油条,但是用惯了开发工具,在Linux下也会有一脸懵b的时候,然后各种dir(),help(),查方法,今天要介绍的就是更快捷的方法。
大家都比较喜欢shell环境下,随便敲下自己想操作命令的前1个或几个字母,就可以使用tab键快速的补全剩余的命令,或查看这些字母开头的所有命令,实际上在Python shell中,我们也可以实现这个功能,下面我们来一起看一下:
 
1,首先我们需要得到python目录(注意红色圈起来的路径)
linux环境下tab自动补全功能
 
2,第二步需要到该目录下写一个tab脚本(/usr/local/lib/python2.7/dist-packages)
linux环境下tab自动补全功能
#!/usr/bin/python
# python tab file 
import sys  
import readline  
import rlcompleter  
import atexit  
import os  
# tab completion
readline.parse_and_bind('tab: complete')  
# history file
histfile = os.path.join(os.environ['HOME'], '.pythonhistory')  
try:  
readline.read_history_file(histfile)  
except IOError:  
pass  
atexit.register(readline.write_history_file, histfile)
del os, histfile, readline, rlcompleter
 
3,切换至家目录下,添加环境变量(.bashrc)---> source .bashrc
linux环境下tab自动补全功能
 
4,root用户可以直接使用tab,其他用户需要先导入tab模块(import tab)
其他用户:
linux环境下tab自动补全功能
import 后:
linux环境下tab自动补全功能
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29207.html