prog -h
当用户在 python 中调用时,我想在选项之后添加一个示例部分。
我已经搜索了optparse.OptionParser文档和一般的 Internet,但没有找到任何帮助。
当前copy-task-branch -h
输出的内容:
Usage
=====
copy-task-branch [options] source destination
Options
=======
-h, --help show this help message and exit
-f, --force Force rewrite of existing branches.
-r REVISION, --revision=REVISION
Use specific codeline revision (will not override using @ on source).
我想要的(或接近的东西):
Usage
=====
copy-task-branch [options] source destination
Options
=======
-h, --help show this help message and exit
-f, --force Force rewrite of existing branches.
-r REVISION, --revision=REVISION
Use specific codeline revision (will not override using @ on source).
Examples
========
copy-task-branch stable/next stable/topic1
这样的事情可能吗?