view bin/whoq @ 11796:cd67bbeea905 draft

<gerzytet> learn a fungus that grows above ground, especially after rain.
author HackEso <hackeso@esolangs.org>
date Mon, 29 Apr 2019 01:19:22 +0000
parents 27e437aef877
children 3d6b560fc682
line wrap: on
line source

if [[ "$1" =~ ^[0-9]+$ ]]; then
  rev="$(hg blame quotes | sed "$1{s/^ *//;s/:.*//;q};d")"
  if [[ -n "$rev" ]]; then
    hg log -r "$rev" -T "{desc}"
  else
    echo "$1: no such quote"
  fi
else
  echo "usage: \`whoq N"
fi