comparison bin/addquote @ 744:ae1e95df9af4

<fizzie> run cp bin/addquote bin/addquote_; sed -ie 's/echo/printf "%d) %s"/;s/") / "/' bin/addquote; cat bin/addquote
author HackBot
date Thu, 04 Oct 2012 21:20:53 +0000
parents e037173e0012
children d70bcf1800e0
comparison
equal deleted inserted replaced
743:9869cf695ce1 744:ae1e95df9af4
1 #!/bin/sh 1 #!/bin/sh
2 [ "$1" ] || exit 1 2 [ "$1" ] || exit 1
3 printf "%s\n" "$1" >>quotes 3 printf "%s\n" "$1" >>quotes
4 echo $(qc | cut -d' ' -f1)") $1" 4 printf "%d) %s" $(qc | cut -d' ' -f1) "$1"