woozle.org/people.sh

12 lines
177 B
Bash
Raw Normal View History

2010-11-10 20:54:22 -07:00
#! /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