lev_comp
calculates Levenshtein distance between strings
TLDR
Compare strings
$ lev_comp "[string1]" "[string2]"
Show distance$ lev_comp -d "[string1]" "[string2]"
Case insensitive$ lev_comp -i "[String1]" "[string2]"
SYNOPSIS
lev_comp [options] string1 string2
DESCRIPTION
lev_comp calculates Levenshtein distance between strings. The distance measures edit operations needed.
The tool compares string similarity. Lower distance means more similar strings.
PARAMETERS
STRING1 STRING2
Strings to compare.-d
Show Levenshtein distance.-i
Case insensitive.--help
Display help information.
CAVEATS
Specific implementation. May not be widely available. Simple edit distance.
HISTORY
lev_comp implements Levenshtein distance, named after Vladimir Levenshtein who defined the metric in 1965.
