0
Is there a code language that would work on a command prompt?
like if i copy some code i made and put it in a batch file
2 Respostas
+ 1
Node - Fast Start
start chome http://localhost:8080/
npm start
pause
Replace Hard Disk by New
ROBOCOPY D:\ F:\ /E /R:0 /W:0
I like batchman
+ 1
I think you are referring to "shell scripting", which are executed on the command line .
Typically batch files (*.bat) runs in a DOS shell, but on Windows you also have WSH (Windows Scripting Host), which has much more powerful scripting than the default DOS shell.
Just note that, IIRC, WSH is only installed by default in Win7 and later, for XP you may have to download and install it.
In the Unix / Linux world there are many shells with similar capabilities similar to WSH, for example Bash.