8 lines
183 B
Bash
Executable File
8 lines
183 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
rundir=/d/ymq/py/sage
|
|
cd $rundir
|
|
/d/ymq/py3/bin/python $rundir/app/sage.py -p 9180 -w $rundir &
|
|
/d/ymq/py3/bin/python $rundir/app/sage.py -p 9181 -w $rundir &
|
|
exit 0
|