mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
20 lines
361 B
Bash
Executable file
20 lines
361 B
Bash
Executable file
#! /bin/bash
|
|
|
|
status="$URL"
|
|
|
|
# Dynamic HTML
|
|
echo '<html>
|
|
<head>
|
|
<title>'"${HTMLTITLE}"'</title>
|
|
</head>
|
|
<body>
|
|
<p>'"$status"'</p>
|
|
<h2>Directory list:</h2><br />
|
|
<a href="../">..</a><br />' >> $OUTFILE
|
|
for i in $( ls "${FILE}" ); do
|
|
echo ' <a href="./'"${i}"'">'"${i}"'</a><br />' >> $OUTFILE
|
|
done
|
|
|
|
# Static HTML
|
|
echo ' </body>
|
|
</html>' >> $OUTFILE
|