aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xft8
-rw-r--r--ft.127
2 files changed, 35 insertions, 0 deletions
diff --git a/ft b/ft
new file mode 100755
index 0000000..cc40806
--- /dev/null
+++ b/ft
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+# ft -- fmt with new line for each sentence
+
+fmt "$@" |
+sed 's/\([^ ]\)\. \([^ ]\)/\1.\n\.temporary line for fmt\n\2/g' |
+fmt "$@" |
+sed '/^\.temporary line for fmt$/d'
diff --git a/ft.1 b/ft.1
new file mode 100644
index 0000000..6ddfd86
--- /dev/null
+++ b/ft.1
@@ -0,0 +1,27 @@
+.Dd $Mdocdate$
+.Dt ft 1
+.Os
+.
+.Sh NAME
+.Nm ft
+.Nd fmt but with new sentence on new line
+.
+.Sh SYNOPSIS
+.Nm ft
+.Op Ar arg ...
+.
+.Sh DESCIPTION
+.Pp
+.Nm
+runs
+.Xr fmt 1
+with any given
+.Ar arg
+in a way such that each new sentence begins on a new line.
+Sentence breaks are recognized if the period in the original text
+is followed by two spaces or a newline.
+.Sh AUTHORS
+.Pp
+.Nm
+is written by John Ankarström
+.Aq Mt john (at) ankarstrom.se .