Inflects input in a bunch of cases.
Mainly to perform search and replace with tools like ripgrep or fastmod.
```bash ➜ inflekt foo-bar foobar FOOBAR fooBar FooBar foo-bar Foo-Bar foobar FOOBAR
➜ inflekt foo-bar beep-boop foobar beepboop FOOBAR BEEPBOOP fooBar beepBoop FooBar BeepBoop foo-bar beep-boop Foo-Bar Beep-Boop foobar beepboop FOOBAR BEEPBOOP
➜ xargs \ --arg-file <(inflekt foo-bar beep-boop) \ --max-lines 1 \ fastmod
➜ rg "($(inflekt foo-bar | xargs | sed 's/ /)|(/g'))"
➜ echo "($(./target/debug/inflekt foo-bar | xargs | sed 's/ /)|(/g'))" (foobar)|(FOOBAR)|(fooBar)|(FooBar)|(foo-bar)|(Foo-Bar)|(foobar)|(FOOBAR) ```