This commit is contained in:
commit
bc8ff5f44a
6520 changed files with 426985 additions and 0 deletions
19
windows/start_lp.py
Normal file
19
windows/start_lp.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
# determine the absolute path to the disk
|
||||
scriptDir = os.path.dirname(os.path.realpath(sys.argv[0]))
|
||||
print "%s" % scriptDir
|
||||
|
||||
args = ""
|
||||
i = 1
|
||||
while (i < len(sys.argv)):
|
||||
if (len(args)):
|
||||
args = "%s %s" % (args, sys.argv[i])
|
||||
else:
|
||||
args = sys.argv[1]
|
||||
i = i + 1
|
||||
|
||||
sys.exit(os.system("python %s/configure_lp.py -load %s" % (scriptDir, args)))
|
Loading…
Add table
Add a link
Reference in a new issue