view bin/whoq @ 11744:db386159d046 draft

<fungot> le/rn philosophical zombie//Philosophical zombies are everyone in this channel except me.
author HackEso <hackeso@esolangs.org>
date Sun, 24 Feb 2019 04:20:55 +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