Find strings that matches approximately the given query.
You can run strox from the terminal if installed, usually through pipx install or uv tool install.
To enable colors, install with the cli-color extra:
pipx install strox[cli-extra]
# or
uv tool install strox[cli-extra]Example of querying for the closest matching option, with weight parameter:
strox "an" "Apple pie" "Indigo" "Banana" --insertion-cost 0.1
# Result: "Banana"Tip: Run strox --help for more options.
MIT