├── .gitattributes ├── .gitignore ├── .vscode └── spellright.dict ├── DoTests.ps1 ├── InstallModule.ps1 ├── LICENSE ├── PSFuzzySearch.psd1 ├── PSFuzzySearch.psm1 ├── PSReadLine_FuzzyCommand.ps1 ├── PublishToGallery.ps1 ├── README.md ├── SelectFuzzyMatch.ps1 ├── __tests__ ├── SelectFuzzyMatch.tests.ps1 └── countries.txt ├── azure-pipelines.yml ├── examples ├── UsingFuzzySearchOnLists.ps1 ├── UsingSelectFuzzyString.ps1 ├── countries.ps1 ├── countriesHashtable.ps1 └── covvertCountriesToHashtable.ps1 └── media ├── PSReadLineFuzzySearch.gif └── fuzzysearch.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- 1 | Hashtable 2 | -------------------------------------------------------------------------------- /DoTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/DoTests.ps1 -------------------------------------------------------------------------------- /InstallModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/InstallModule.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/LICENSE -------------------------------------------------------------------------------- /PSFuzzySearch.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/PSFuzzySearch.psd1 -------------------------------------------------------------------------------- /PSFuzzySearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/PSFuzzySearch.psm1 -------------------------------------------------------------------------------- /PSReadLine_FuzzyCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/PSReadLine_FuzzyCommand.ps1 -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/PublishToGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/README.md -------------------------------------------------------------------------------- /SelectFuzzyMatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/SelectFuzzyMatch.ps1 -------------------------------------------------------------------------------- /__tests__/SelectFuzzyMatch.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/__tests__/SelectFuzzyMatch.tests.ps1 -------------------------------------------------------------------------------- /__tests__/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/__tests__/countries.txt -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/UsingFuzzySearchOnLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/examples/UsingFuzzySearchOnLists.ps1 -------------------------------------------------------------------------------- /examples/UsingSelectFuzzyString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/examples/UsingSelectFuzzyString.ps1 -------------------------------------------------------------------------------- /examples/countries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/examples/countries.ps1 -------------------------------------------------------------------------------- /examples/countriesHashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/examples/countriesHashtable.ps1 -------------------------------------------------------------------------------- /examples/covvertCountriesToHashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/examples/covvertCountriesToHashtable.ps1 -------------------------------------------------------------------------------- /media/PSReadLineFuzzySearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/media/PSReadLineFuzzySearch.gif -------------------------------------------------------------------------------- /media/fuzzysearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSFuzzySearch/HEAD/media/fuzzysearch.gif --------------------------------------------------------------------------------