view bin/whoq @ 12040:a78307295ae5 draft

<wib_jonas> python3 -cn="bin/allquotes"; a=open(n,"rb").read(); a=a.replace(b\'quotes\',b\'"${HACKENV-/hackenv}/quotes"\'); open(n,"wb").write(a)
author HackEso <hackeso@esolangs.org>
date Fri, 15 Nov 2019 14:33:13 +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