python命令行補全

說明藍色=命令名稱python

      淺綠=命令參數bash

      淺藍=選項ide

      紫色=目錄spa

      系統環境:CentOS  5.8  x86_64blog

      Python版本:2.7.3get

在用戶宿主目錄創建 .pythonstartup 文件內容以下:string

  
  
  
  
  1. # python startup file  
  2. import readline  
  3. import rlcompleter  
  4. import atexit  
  5. import os  
  6. # tab completion  
  7. readline.parse_and_bind('tab: complete')  
  8. # history file  
  9. histfile = os.path.join(os.environ['HOME'], '.pythonhistory')  
  10. try:  
  11.     readline.read_history_file(histfile)  
  12. except IOError:  
  13.     pass  
  14. atexit.register(readline.write_history_file, histfile)  
  15. del os, histfile, readline, rlcompleter  

在宿主目錄的 .bashrc 文件中加入環境變量:it

echo "export PYTHONSTARTUP=~/.pythonstartup" >> ~/.bashrcio

退出從新登陸,效果如圖:class

相關文章
相關標籤/搜索