├── Test.bat ├── EncTool.bat ├── Sample Text.bat ├── README.md └── .gitattributes /Test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honguito98/enctool-batch/HEAD/Test.bat -------------------------------------------------------------------------------- /EncTool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honguito98/enctool-batch/HEAD/EncTool.bat -------------------------------------------------------------------------------- /Sample Text.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honguito98/enctool-batch/HEAD/Sample Text.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EncTool for Windows batch files 2 | 3 | ## What it is? 4 | Development tool for text protection within batch files. 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | --------------------------------------------------------------------------------