projets
/
progfou.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Outil de recherche des subscriptions au pages de WikiTeki.
[progfou.git]
/
moinmoin
/
wikiteki-subscribed_pages
1
#!/bin/sh
2
BASEDIR="/var/lib/moinmoin"
3
WIKI="wikiteki"
4
5
cd "$BASEDIR/$WIKI/data/user/"
6
for f in *
7
do
8
awk -v f="$f" -F= '
9
/^name=/ { n=$2 }
10
/^email=/ { e=$2 }
11
/^subscribed_pages.*=/ { sp=$2 }
12
END { if (sp!="") print "\033[1;36m"n"\033[m <"e"> (\033[1m"f"\033[m)\n "sp }
13
' "$f"
14
done