diff options
author | dzwdz | 2024-03-28 20:00:44 +0100 |
---|---|---|
committer | dzwdz | 2024-03-28 20:00:44 +0100 |
commit | b66860109ee59d3efcd6323c0c48a074122d1e93 (patch) | |
tree | 46c424e595d47ccec1de18e46a71815d2b762ceb /userbar.sh |
gathering up all the shit i've made so far
Diffstat (limited to 'userbar.sh')
-rwxr-xr-x | userbar.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/userbar.sh b/userbar.sh new file mode 100755 index 0000000..606d5de --- /dev/null +++ b/userbar.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +for file in /home/*/public_html/index.html; do + cmp -s "$file" /etc/skel/public_html/index.html + if [ $? -eq 1 ]; then + user=${file##/home/} + user=${user%%/*} + printf '<li><a href="/~%s">~%s</a></li>\n' $user $user + fi +done |