diff options
author | Kurt H Maier <khm@intma.in> | 2012-04-06 16:36:28 -0400 |
---|---|---|
committer | Kurt H Maier <khm@intma.in> | 2012-04-06 16:36:28 -0400 |
commit | 934e5dc5a580f850310c90241804f6fce7f36498 (patch) | |
tree | 24cab4c84cfdf307d47016da67429809a94808f0 /rc/bin/feminize | |
parent | 8ebb846fb2b3b6ba6e828be2ba1ed37d6b4847f2 (diff) | |
download | plan9front-934e5dc5a580f850310c90241804f6fce7f36498.tar.xz |
rc stands for 'run commands.' this has the phrase 'man' in it and is therefore unsuitable for feminize(1). use sed instead.
Diffstat (limited to 'rc/bin/feminize')
-rwxr-xr-x | rc/bin/feminize | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rc/bin/feminize b/rc/bin/feminize index 30228bb71..de5767ff5 100755 --- 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/ |