aboutsummaryrefslogtreecommitdiff
path: root/bin/rfct
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-13 20:16:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-13 20:17:09 +1200
commitf7e0e8afd841f2d390f4727be1dd556dcf3f5b07 (patch)
tree8e40a7103fa30000e6235d0c74beaa33ca4a6ce5 /bin/rfct
parentAdd pit(1) (diff)
downloaddotfiles-f7e0e8afd841f2d390f4727be1dd556dcf3f5b07.tar.gz
dotfiles-f7e0e8afd841f2d390f4727be1dd556dcf3f5b07.zip
Add rfcf(1), rfcr(1), and rfct(1)
Diffstat (limited to 'bin/rfct')
-rwxr-xr-xbin/rfct15
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/rfct b/bin/rfct
new file mode 100755
index 00000000..ce15d4d7
--- /dev/null
+++ b/bin/rfct
@@ -0,0 +1,15 @@
+#!/usr/bin/awk -f
+
+# A record is a paragraph
+BEGIN {
+ RS=""
+}
+
+# Skip any block without at least one alphanumeric char
+!/[[:alnum:]]/ { next }
+
+# Skip any block with a page break marker in it
+/ / { next }
+
+# Print the block followed by two newlines
+{ printf "%s\n\n", $0 }