mirror of https://github.com/nealey/woozle.org.git
12 lines
177 B
Bash
12 lines
177 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
echo 'Title: People'
|
||
|
echo
|
||
|
|
||
|
ls /home/*/public_html/index.html | while read fn; do
|
||
|
a=${fn#/home/}
|
||
|
u=${a%/public_html/index.html}
|
||
|
|
||
|
echo "* [$u](/~$u)"
|
||
|
done
|