mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
17 lines
317 B
Bash
Executable file
17 lines
317 B
Bash
Executable file
#! /bin/bash
|
|
|
|
echo '<html>
|
|
<head>
|
|
<title>Index of: '"$URL"'</title>
|
|
</head>
|
|
<body>
|
|
<p>'"$URL"'</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
|
|
|
|
echo ' </body>
|
|
</html>' >> $OUTFILE
|