Thumbnail

mod/u.buni.party.git

Clone URL: https://git.buni.party/mod/u.buni.party.git

Viewing file on branch master

1#!/bin/sh
2
3echo "content-type: text/html"
4echo
5
6cat <<EOF
7!!$DPP "Groupnix Users" "Users" <template/head.html
8!!$DPP "users" <template/bar.html
9
10<p>Below is the list of users on groupnix</p>
11<ul>
12EOF
13
14
15for userpath in /home/*; do
16 user="\${userpath##*/}"
17 printf '<li><a href="%s">%s</a></li>\n' "/\$user" "\$user"
18done
19
20cat <<EOF
21</ul>
22!!$DPP <template/foot.html
23EOF
24