From 3ff2e62722ff5a51a32961d97dc028c56e00481f Mon Sep 17 00:00:00 2001 From: kaa Date: Thu, 9 Nov 2023 22:57:12 -0800 Subject: A good copy of libhyphen is included in-tree. Makefile has been modified so as to allow easy compilation. The build path is now a compiled-in constant, allowing for the hyphenation patterns in-tree to be referenced from any directory. Hyphenation language may be specified at runtime using -l. --- unhyp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'unhyp') diff --git a/unhyp b/unhyp index 656d15f..5f9ae43 100755 --- a/unhyp +++ b/unhyp @@ -1,3 +1,5 @@ #!/bin/sh -sed 's/\­\;//g' +in=${1:-/dev/stdin} +out=${2:-/dev/stdout} +< $in sed 's/\­\;//g' > $out -- cgit v1.2.3