
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_FNtake a screen shot and then exit--script=SCRIPT execute a script and then exit--script-window=SCRIPT_WINDOWopen 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_SIZEinitial window size in height x width format
在shell环境玩leo,算了,不管