CliCompiler how to decrypt file - listiary/DescribeCompiler GitHub Wiki
DescribeCompilerCLI decrypt-file "C:\parse\path\input\input.denc" "C:\result\path\input\input.ds"
password="qwerty123" auto
decrypt-file ENCRYPTED_PATH PLAIN_PATH password=PASSWORD [ auto ][ theme=<verb> ]
The decrypt-file command is used to, well, decrypt a file. First we specify the command, followed by the source file to be decrypted and the output file path, that should end with ".ds" file extension, if we plan on parsing the file. Any arguments after these are optional. (Input and Output paths cannot be the same)
-
password
The password that will be used to decrypt the file. -
auto
The auto flag specifies that the tool is being invoked from a script or a tool. Essentially it removes stuff like changing console colors and prompts likePress any key to exit., as those can break or complicate automated scripts and tools. -
theme
The CLI Transpiler now supports different color themes, via this argument. Expected values are:DBLUE,LBLUE,GREEN,PASTEL,EARTH,CONTRAST,DEFAULT,VIOLETandCYAN. You can see those themes demonstrated here.