CGI no longer assumes CWD
This commit is contained in:
parent
6fc2cbd238
commit
954550438a
|
@ -7,6 +7,8 @@ import urllib
|
|||
import os
|
||||
import sys
|
||||
|
||||
os.chdir(os.path.dirname(sys.argv[0]))
|
||||
|
||||
f = cgi.FieldStorage()
|
||||
|
||||
s = f.getfirst('sett')
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#! /bin/sh
|
||||
|
||||
cd $(dirname $0)
|
||||
|
||||
randint () {
|
||||
seq $1 $2 | shuf -n 1
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#! /bin/sh
|
||||
|
||||
cd $(dirname $0)
|
||||
|
||||
intro () {
|
||||
shuf -n 1 <<EOF
|
||||
How's it going?
|
||||
|
|
Loading…
Reference in New Issue