forked from ryuichiueda/RobotDesign3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.bash
executable file
·54 lines (43 loc) · 1.11 KB
/
upload.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash -xv
exec 2> /tmp/upload.bash
tmp=/tmp/$$
###mimeマルチパートでPOSTされてくるデータを読み込む###
dd bs=${CONTENT_LENGTH} count=1 |
nkf -wLux > $tmp-upload
###ファイル名を取り出す###
FILE=$(head -n 3 $tmp-upload | grep -o 'filename="[^"]*"' | sed 's/[^"]*"//' | sed 's/".*//')
echo $FILE > /tmp/boke
sed -n '/^$/,$p' $tmp-upload |
tail -n +2 |
grep -v '^----' > $tmp-contents
###ファイル形式ごとの処理###
case "$FILE" in
*.cc )
mv $tmp-contents $tmp-main.cc
g++ $tmp-main.cc -lm -o $tmp-main
chmod +x $tmp-main
#実行したいファイルの名前を/tmp/executableに入れる
mv $tmp-main /tmp/executable
;;
*.c )
mv $tmp-contents $tmp-main.c
gcc $tmp-main.cc -lm -o $tmp-main
chmod +x $tmp-main
#実行したいファイルの名前を/tmp/executableに入れる
mv $tmp-main /tmp/executable
;;
*)
cat $tmp-contents > /tmp/executable
;;
esac
ps aux |
grep executable |
awk '{print $2}' |
xargs kill -KILL
chmod a+x /tmp/executable
echo 'Content-type: text/html'
echo
echo OK
#/tmp/executable 2> /tmp/errorlog
#echo "--STDERR--"
#cat /tmp/errorlog