mirror of
https://github.com/nealey/woozle.org.git
synced 2025-01-16 11:55:13 -07:00
11 lines
177 B
Bash
Executable file
11 lines
177 B
Bash
Executable file
#! /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
|