mirror of
https://github.com/sigmasternchen/ShellSpider
synced 2025-03-16 00:19:06 +00:00
18 lines
170 B
Bash
Executable file
18 lines
170 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. $1
|
|
|
|
setStatusCode 200
|
|
|
|
cat <<EOF
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello World</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
</body>
|
|
</html>
|
|
|
|
EOF
|