view bin/whoq @ 11594:27e437aef877 draft

<fizzie> fetch bin/whoq https://hack.esolangs.org/get/bin/whoq
author HackEso <hackeso@esolangs.org>
date Wed, 08 Aug 2018 13:52:58 +0000
parents eb873414aa9c
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