Python中的tab补全


首先需要知道Python的读取路径

>>> import sys
>>> sys.path
['', '/usr/lib64/python26.zip', '/usr/lib64/python2.6', '/usr/lib64/python2.6/plat-linux2', '/usr/lib64/python2.6/lib-tk', '/usr/lib64/python2.6/lib-old', '/usr/lib64/python2.6/lib-dynload', '/usr/lib64/python2.6/site-packages', '/usr/lib/python2.6/site-packages']

可以看到python可以去这些地方读取,我们把脚本放在/usr/lib64/python2.6 即可

[root@python python2.6]# cat startup.py
#!/usr/bin/python
# python startup 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

这样做一个问题就是,你每次启动python后,都需要手动导入一下,比如

>>> import startup

可以在系统环境变量中,加入读取路径,这样就免去了每次导入的麻烦

[root@python python2.6]# cat ~/.bashrc

export PYTHONSTARTUP=/usr/lib64/python2.6/startup.py

即可。

无需操作系统直接运行 Python 代码 

CentOS上源码安装Python3.4 

《Python核心编程 第二版》.(Wesley J. Chun ).[高清PDF中文版]

《Python开发技术详解》.( 周伟,宗杰).[高清PDF扫描版+随书视频+代码]

Python脚本获取Linux系统信息

在Ubuntu下用Python搭建桌面算法交易研究环境

Python 语言的发展简史

Python 的详细介绍:请点这里
Python 的下载地址:请点这里

本文永久更新链接地址

相关内容