You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
296 B
9 lines
296 B
#! /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
|
|
|