view bin/delquote @ 1197:242eadf698d1

<oerjan> addquote <kmc> i bet a blog post complaining about ");});});" syntax in JavaScript and comparing it unfavorably to Lisp would get approximately one billion comments on hacker news <Bike> but at what cost? your very \x02soul\x0f, kmc!
author HackBot
date Sun, 23 Dec 2012 17:25:01 +0000
parents ee2e8950bb3c
children 48427dffea8d
line wrap: on
line source

#!/bin/sh
id=$1
expr "$1" + 0 >/dev/null 2>&1 || exit 1
head -n $((id-1)) quotes >quotes.new
tail -n +$((id+1)) quotes >>quotes.new
diff quotes quotes.new >/dev/null && exit 1
printf "*poof*%s" "$(quote $id | cut -d')' -f2-)"
mv quotes.new quotes