mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-21 04:31:05 -05:00
10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
echo "<ul id=\"users\">"
|
|
for i in `ls -cd u/*`
|
|
do
|
|
user=$(basename $i | cut -d'.' -f1)
|
|
test "$user" == 'www' && continue
|
|
echo "<li><a title=\"$(stat -c%z $i | awk '{print $1}')\" href=\"u/$user\">@${user}</a></li>"
|
|
done
|
|
echo "</ul>"
|