omniidl
来自「编译工具」· 代码 · 共 34 行
TXT
34 行
#!/bin/sh# This shell script attempts to run omniidl.py using a Python# interpreter named omnipython in the same directory. If it is not# found, it falls-back on using a Python interpreter from the PATH.## If this script does not work for you, make sure there is a suitable# Python interpreter on your path, and run omniidlrun.py directly.# Figure out where this script is running fromcase $0 in /*|*/*) dir=`dirname $0`;;esacif test -z $dir; then me=`basename $0` dir=`(IFS=':'; for p in $PATH; do echo $p; done) | while read p ; do if test -x $p/$me ; then echo $p break fi done`fiomnipython=$dir/omnipythonomniidl=$dir/omniidlrun.pyif test -x $omnipython ; then $omnipython $omniidl "$@"else $omniidl "$@"fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?