Visual Studio Code – How to echo command line arguments when debugging in VSCode?
I am debugging my code using a launch.json file. I have a long list of command line arguments: "args": [ "-i", "inputfile", "-o", "outputfile", "--option", "do_stuff", "--very-long-option", "do_some_serious_stuff", ... ] It works well. But now I would like to run…