Add carat.sh quoting program
authorColin McCabe <cmccabe@alumni.cmu.edu>
Sun, 13 Dec 2009 23:29:04 +0000 (15:29 -0800)
committerColin McCabe <cmccabe@alumni.cmu.edu>
Sun, 13 Dec 2009 23:31:45 +0000 (15:31 -0800)
carat.sh [new file with mode: 0755]

diff --git a/carat.sh b/carat.sh
new file mode 100755 (executable)
index 0000000..07a68fb
--- /dev/null
+++ b/carat.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+#
+# This is a simple little program for formatting text.
+# When I'm posting messages to messageboards like LWN.net, I often like to
+# quote another poster. The traditional way to do this is to put carats
+# before his text, like this:
+#
+# > quoted text goes here
+# reply goes here 
+#
+# This script will add the carats to source text. It will also do
+# line-wrapping at 76 characters along the way.
+#
+# Colin McCabe
+#
+
+fold -s -w 75 | sed 's/^/> /'