Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samwho/gommoize
A joke program that will replace all vowels with "O" on a given input.
https://github.com/samwho/gommoize
Last synced: about 2 months ago
JSON representation
A joke program that will replace all vowels with "O" on a given input.
- Host: GitHub
- URL: https://github.com/samwho/gommoize
- Owner: samwho
- License: other
- Created: 2011-12-01T16:26:40.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-01T16:27:07.000Z (about 13 years ago)
- Last Synced: 2024-10-14T20:43:25.223Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Gommoize is a simple little program that was written as a joke. It started with
my house mate's girlfriend's name: Gemma. The joke is to call everyone by their
name, but replace every vowel with the letter "O". Hence, Gommo.# Installation
To install, make the bin/gommoize file executable like so:
$ chmod +x bin/gommoize
And put it in a folder that is in your path. This can be achieved by doing:
$ sudo cp ./bin/gommoize /usr/bin/gommoize
Or something like that. I personally keep a folder in my home directory called
"scripts" and put that into my path in my .bashrc file and symlink to scripts
from there but whatever works best for you.# Usage
Usage is very simple. You can either pipe something into gommoize, like so:
$ cat somefile.txt | gommoize
Or you can pass it a string as an argument:
$ gommoize "Gemma"
And whatever was passed in will simply return the content with all vowels
replaced with the letter "O".