git: 9front

Download patch

ref: 924423701197662d0188fef67eef0b3a2e18cdf6
parent: c39fae7a80f170e6bd52b93f1417c949e8344626
author: Kurt H Maier <khm@intma.in>
date: Fri Apr 6 12:36:28 EDT 2012

rc stands for 'run commands.'  this has the phrase 'man' in it and is therefore unsuitable for feminize(1).  use sed instead.

--- a/rc/bin/feminize
+++ b/rc/bin/feminize
@@ -1,3 +1,5 @@
-#!/bin/rc
+#!/bin/sed -f
 
-exec sed 's/ [aeiou]n([a-z][a-z][a-z])/ man\1/; s/ [a-z]em([a-z][a-z][a-z])/ fem\1/; s/ [aeiou]m/ fem/;'
+s/ [aeiou]n([a-z][a-z][a-z])/ man\1/
+s/ [a-z]em([a-z][a-z][a-z])/ fem\1/
+s/ [aeiou]m/ fem/
--