├── .gitattributes ├── .gitignore ├── .gitmodules ├── GetDependencies.cmd ├── GetDependencies.py ├── LICENSE.TXT ├── README.md ├── RELEASE NOTES.md ├── Tests.cmd ├── Tests ├── Tests.cmd ├── Tests.py ├── fTestDependencies.py └── internal-python-module-dependencies.txt ├── cCounter.py ├── cDict.py ├── cList.py ├── dxConfig.py ├── dxProductDetails.json ├── fCheckPythonVersion.py ├── fInitializeProduct.py ├── fOutputLicenseInformation.py ├── fOutputLogo.py ├── fOutputUsageInformation.py ├── fOutputVersionInformation.py ├── fasSortedAlphabetically.py ├── fatsArgumentLowerNameAndValue.py ├── faxListOutput.py ├── fdtoMultithreadedFileNameAndPathMatcher.py ├── foConsoleLoader.py ├── foMultithreadedFileContentMatcher.py ├── fs0RunCommandAndReturnErrorMessage.py ├── lgtm.yml ├── mColorsAndChars.py ├── mExitCodes.py ├── mStandardExitCodes.py ├── rs.cmd └── rs.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /GetDependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/GetDependencies.cmd -------------------------------------------------------------------------------- /GetDependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/GetDependencies.py -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/RELEASE NOTES.md -------------------------------------------------------------------------------- /Tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/Tests.cmd -------------------------------------------------------------------------------- /Tests/Tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/Tests/Tests.cmd -------------------------------------------------------------------------------- /Tests/Tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/Tests/Tests.py -------------------------------------------------------------------------------- /Tests/fTestDependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/Tests/fTestDependencies.py -------------------------------------------------------------------------------- /Tests/internal-python-module-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/Tests/internal-python-module-dependencies.txt -------------------------------------------------------------------------------- /cCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/cCounter.py -------------------------------------------------------------------------------- /cDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/cDict.py -------------------------------------------------------------------------------- /cList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/cList.py -------------------------------------------------------------------------------- /dxConfig.py: -------------------------------------------------------------------------------- 1 | dxConfig = { 2 | "sLineNumberAfterPathPrefix": ":", 3 | } -------------------------------------------------------------------------------- /dxProductDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/dxProductDetails.json -------------------------------------------------------------------------------- /fCheckPythonVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fCheckPythonVersion.py -------------------------------------------------------------------------------- /fInitializeProduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fInitializeProduct.py -------------------------------------------------------------------------------- /fOutputLicenseInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fOutputLicenseInformation.py -------------------------------------------------------------------------------- /fOutputLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fOutputLogo.py -------------------------------------------------------------------------------- /fOutputUsageInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fOutputUsageInformation.py -------------------------------------------------------------------------------- /fOutputVersionInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fOutputVersionInformation.py -------------------------------------------------------------------------------- /fasSortedAlphabetically.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fasSortedAlphabetically.py -------------------------------------------------------------------------------- /fatsArgumentLowerNameAndValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fatsArgumentLowerNameAndValue.py -------------------------------------------------------------------------------- /faxListOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/faxListOutput.py -------------------------------------------------------------------------------- /fdtoMultithreadedFileNameAndPathMatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fdtoMultithreadedFileNameAndPathMatcher.py -------------------------------------------------------------------------------- /foConsoleLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/foConsoleLoader.py -------------------------------------------------------------------------------- /foMultithreadedFileContentMatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/foMultithreadedFileContentMatcher.py -------------------------------------------------------------------------------- /fs0RunCommandAndReturnErrorMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/fs0RunCommandAndReturnErrorMessage.py -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/lgtm.yml -------------------------------------------------------------------------------- /mColorsAndChars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/mColorsAndChars.py -------------------------------------------------------------------------------- /mExitCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/mExitCodes.py -------------------------------------------------------------------------------- /mStandardExitCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/mStandardExitCodes.py -------------------------------------------------------------------------------- /rs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/rs.cmd -------------------------------------------------------------------------------- /rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLined/rs/HEAD/rs.py --------------------------------------------------------------------------------