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

 

 

即可

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。