leo學習系列之二——leo啓動運行

leo啓動的幾種方式

1:在python shell 中啓動

import leo
leo.run() # runs Leo, opening a new outline or,
leo.run(fileName=aFileName) # runs Leo, opening the given file name.
2:到leo下載目錄啓動

cd <path-to-launchLeo.py>
python launchLeo.py %*
3:當然,你也可以寫成shell腳本

#!/bin/sh
python <leopath>launchLeo.py $1
leo啓動時的參數:

Usage: launchLeo.py [options]

Options:
  -h, --help            show this help message and exit
  --fullscreen          start fullscreen (Qt only)
  --ipython             enable ipython support
  --gui=GUI             gui to use (qt/qttabs)
  --maximized           start maximized (Qt only)
  --minimized           start minimized
  --no-cache            disable reading of cached files
  --no-plugins          disable all plugins
  --no-splash           disable the splash screen
  --screen-shot=SCREENSHOT_FN
                        take a screen shot and then exit
  --script=SCRIPT       execute a script and then exit
  --script-window=SCRIPT_WINDOW
                        open a window for scripts
  --select=SELECT       headline or gnx of node to select
  --session-restore     restore previously saved session tabs at startup
  --session-save        save session tabs on exit
  --silent              disable all log messages
  -v, --version         print version number and exit
  --window-size=WINDOW_SIZE
                        initial window size in height x width format
在shell環境玩leo,算了,不管

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章