Skip to content

Instantly share code, notes, and snippets.

@edygert
Created August 8, 2022 16:04
Show Gist options
  • Save edygert/f7ab52f44c1c8bc8cdd6eb3dbb31cd95 to your computer and use it in GitHub Desktop.
Save edygert/f7ab52f44c1c8bc8cdd6eb3dbb31cd95 to your computer and use it in GitHub Desktop.
Replacement eval for cscript
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