├── .config └── tsaoptions.json ├── .github ├── CODE_OF_CONDUCT.md ├── SECURITY.md └── workflows │ └── ci-test.yml ├── .gitignore ├── .pipelines └── TextUtility-Official.yml ├── LICENSE ├── README.md ├── global.json ├── nuget.config ├── src ├── Microsoft.PowerShell.TextUtility.format.ps1xml ├── Microsoft.PowerShell.TextUtility.psd1 ├── code │ ├── CompareTextCommand.cs │ ├── ConvertBase64Command.cs │ ├── DiffMatchPatch.cs │ ├── Microsoft.PowerShell.TextUtility.csproj │ ├── TestSpellingCommand.cs │ └── TextTableParser.cs └── dictionary.txt ├── test ├── Base64.tests.ps1 ├── CompareText.tests.ps1 ├── TextTableParser.Tests.ps1 └── assets │ ├── attrib.01.txt │ ├── columns.01.txt │ ├── df.01.txt │ ├── docker.01.txt │ ├── docker.02.txt │ ├── docker.03.txt │ ├── docker.04.txt │ ├── getmac.01.txt │ ├── kmutil.01.txt │ ├── ls.01.txt │ ├── ls.02.txt │ ├── ls.03.txt │ ├── ps.01.txt │ ├── ps.02.txt │ ├── ps.03.txt │ ├── ps.04.txt │ ├── tasklist.01.txt │ ├── tasklist.02.txt │ ├── who.01.txt │ └── who.02.txt └── yaml ├── ci.yml ├── releaseBuild.yml └── template └── runtest.yml /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/ci-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.github/workflows/ci-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/TextUtility-Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/.pipelines/TextUtility-Official.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Microsoft.PowerShell.TextUtility.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/Microsoft.PowerShell.TextUtility.format.ps1xml -------------------------------------------------------------------------------- /src/Microsoft.PowerShell.TextUtility.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/Microsoft.PowerShell.TextUtility.psd1 -------------------------------------------------------------------------------- /src/code/CompareTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/CompareTextCommand.cs -------------------------------------------------------------------------------- /src/code/ConvertBase64Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/ConvertBase64Command.cs -------------------------------------------------------------------------------- /src/code/DiffMatchPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/DiffMatchPatch.cs -------------------------------------------------------------------------------- /src/code/Microsoft.PowerShell.TextUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/Microsoft.PowerShell.TextUtility.csproj -------------------------------------------------------------------------------- /src/code/TestSpellingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/TestSpellingCommand.cs -------------------------------------------------------------------------------- /src/code/TextTableParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/code/TextTableParser.cs -------------------------------------------------------------------------------- /src/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/src/dictionary.txt -------------------------------------------------------------------------------- /test/Base64.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/Base64.tests.ps1 -------------------------------------------------------------------------------- /test/CompareText.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/CompareText.tests.ps1 -------------------------------------------------------------------------------- /test/TextTableParser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/TextTableParser.Tests.ps1 -------------------------------------------------------------------------------- /test/assets/attrib.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/attrib.01.txt -------------------------------------------------------------------------------- /test/assets/columns.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/columns.01.txt -------------------------------------------------------------------------------- /test/assets/df.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/df.01.txt -------------------------------------------------------------------------------- /test/assets/docker.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/docker.01.txt -------------------------------------------------------------------------------- /test/assets/docker.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/docker.02.txt -------------------------------------------------------------------------------- /test/assets/docker.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/docker.03.txt -------------------------------------------------------------------------------- /test/assets/docker.04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/docker.04.txt -------------------------------------------------------------------------------- /test/assets/getmac.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/getmac.01.txt -------------------------------------------------------------------------------- /test/assets/kmutil.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/kmutil.01.txt -------------------------------------------------------------------------------- /test/assets/ls.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ls.01.txt -------------------------------------------------------------------------------- /test/assets/ls.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ls.02.txt -------------------------------------------------------------------------------- /test/assets/ls.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ls.03.txt -------------------------------------------------------------------------------- /test/assets/ps.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ps.01.txt -------------------------------------------------------------------------------- /test/assets/ps.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ps.02.txt -------------------------------------------------------------------------------- /test/assets/ps.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ps.03.txt -------------------------------------------------------------------------------- /test/assets/ps.04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/ps.04.txt -------------------------------------------------------------------------------- /test/assets/tasklist.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/tasklist.01.txt -------------------------------------------------------------------------------- /test/assets/tasklist.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/tasklist.02.txt -------------------------------------------------------------------------------- /test/assets/who.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/who.01.txt -------------------------------------------------------------------------------- /test/assets/who.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/test/assets/who.02.txt -------------------------------------------------------------------------------- /yaml/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/yaml/ci.yml -------------------------------------------------------------------------------- /yaml/releaseBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/yaml/releaseBuild.yml -------------------------------------------------------------------------------- /yaml/template/runtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/TextUtility/HEAD/yaml/template/runtest.yml --------------------------------------------------------------------------------