11 lines
191 B
Plaintext
11 lines
191 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Simple script of substitutions to uwuify English.
|
||
|
# Not a great use of disk...
|
||
|
dd 2>/dev/null \
|
||
|
| sed \
|
||
|
-e 's/l/w/g' \
|
||
|
-e 's/r/w/g' \
|
||
|
-e 's/smaww/smol/g' \
|
||
|
-e 's/wove/wuv/g'
|