python命令行添加自动补全和命令历史功能

Posted 菲菲菲菲菲常新的新手

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python命令行添加自动补全和命令历史功能相关的知识,希望对你有一定的参考价值。

# python startup file
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

将以上文件保存为.pythonstartup并存放在用户的主目录下,window放在C:\Users\Administrator下,linux放在/root或者/home/xxx目录下,然后设置环境变量

linux中export PYTHONSTARTUP=~/.pythonstartup

windows中一样,打开控制面板\系统和安全\系统,高级系统设置,环境变量,新建系统变量,变量名为PYTHONSTARTUP,变量值为之前的文件

在python2中可以运行

 

以上是关于python命令行添加自动补全和命令历史功能的主要内容,如果未能解决你的问题,请参考以下文章

为Python添加交互模式下TAB自动补全以及命令历史功能

8.1 shell介绍 8.2 命令历史 8.3 命令补全和别名 8.4 通配符 8.5 输入输出重

shell介绍 命令历史 命令补全和别名 输入输出重定向

shell介绍命令历史 命令补全和别名 通配符输入输出重定向

shell介绍,命令历史,命令补全和别名,通配符,输入输出重定向

shell介绍命令历史命令补全和别名通配符输入输出重定向