view paste/paste.13254 @ 3675:2d84b1041c31

<elliott> addquote <zzo38> If someone tries really hard to convince you to sell them drugs, then you should photograph them and bind them. <kmc> bind them to what <zzo38> To jail.
author HackBot
date Sat, 07 Sep 2013 20:38:10 +0000
parents ac59fa54605e
children
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