10 lines
296 B
Bash
Executable File
10 lines
296 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
#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
|