* Wrote elmer fudd filter in perl, replacment for a long-removed
authorjoey <joey@a4a2c43b-8ac3-0310-8836-e0e880c912e2>
Thu, 4 Oct 2001 23:32:41 +0000 (23:32 +0000)
committerjoey <joey@a4a2c43b-8ac3-0310-8836-e0e880c912e2>
Thu, 4 Oct 2001 23:32:41 +0000 (23:32 +0000)
     lex filter of uncertian authorship and copyright. Closes: #109157

Makefile
debian/changelog
filters.6
fudd [new file with mode: 0755]

index e80d129b0419ea46c1df2e037e49834d6a7c1dcf..3e05b6e0f6284b0e01e08a04ba430e0c192821c7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 LEX     = flex
 
 BUILD   = jethro kraut cockney jive nyc ken ky00te newspeak
-OTHER   = eleet b1ff chef jibberish upside-down rasterman studly
+OTHER   = eleet b1ff chef jibberish upside-down rasterman studly fudd
 
 all:   $(OTHER) $(BUILD)
 
index a46f423ff958a3279d64ec50c1a9511543a8fcad..755086269851e55edbf18a9eb661ffc625b9bd3b 100644 (file)
@@ -1,3 +1,10 @@
+filters (2.21) unstable; urgency=low
+
+  * Wrote elmer fudd filter in perl, replacment for a long-removed
+    lex filter of uncertian authorship and copyright. Closes: #109157
+
+ -- Joey Hess <joeyh@debian.org>  Thu,  4 Oct 2001 19:32:00 -0400
+
 filters (2.20) unstable; urgency=low
 
   * Woo hoo! JWZ has placed newspeak under a BSD-ish license, so it moves
index aa36a3d50923e5e0a79c83f8d297adb1346fcf6a..949974024cf14e2aa110a92800fbb8f9fbbb287d 100644 (file)
--- a/filters.6
+++ b/filters.6
@@ -1,6 +1,6 @@
 .TH FILTERS 6
 .SH NAME
-ken, b1ff, chef, cockney, eleet, jethro, jibberish, jive, kraut, ky00te, newspeak, nyc, rasterman, studly, upside-down \- assorted text filters
+ken, b1ff, chef, cockney, eleet, fudd, jethro, jibberish, jive, kraut, ky00te, newspeak, nyc, rasterman, studly, upside-down \- assorted text filters
 .SH SYNOPSIS
  $SHELL | chef
 .SH "DESCRIPTION"
@@ -17,6 +17,8 @@ Cockney English
 convert English on stdin to Mock Swedish on stdout
 .IP eleet
 K3wl hacker slang
+.IP fudd
+Elmer Fudd
 .IP jethro
 Hillbilly text filter
 .IP jive
diff --git a/fudd b/fudd
new file mode 100755 (executable)
index 0000000..71460f2
--- /dev/null
+++ b/fudd
@@ -0,0 +1,14 @@
+#!/usr/bin/perl -p
+# Elmer Fudd. GPL 2001 by Joey Hess <joey@kitenet.net>
+s/[rl]/w/g;
+s/qu/qw/g;
+s/th\b/f/g;
+s/th\B/d/g;
+s/n\./n, uh-hah-hah-hah. /g;
+s/[RL]/W/g;
+s/Qu/Qw/g;
+s/QU/QW/g;
+s/TH\b/F/g;
+s/TH\B/D/g;
+s/Th/D/g;
+s/N\./N, uh-hah-hah-hah./g;
This page took 0.013968 seconds and 4 git commands to generate.