Created
August 8, 2022 16:04
-
-
Save edygert/f7ab52f44c1c8bc8cdd6eb3dbb31cd95 to your computer and use it in GitHub Desktop.
Replacement eval for cscript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
original_eval = eval; | |
eval = function(input_string) { | |
WScript.Echo(input_string); | |
original_eval(input_string); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment