10 lines
285 B
Bash
Executable File
10 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#if not in wiki.d/ via pwd or parameter
|
|
##then display help
|
|
# `pwd|grep wiki.d`
|
|
## XXX this and those following script are not done at the root of the wiki
|
|
### wiki_oldest_mentions
|
|
### wiki_page_diffs
|
|
grep author: $@ | sed -e "s/.*=//" | sort | uniq -i -c | sort -nr | head
|