Is there a code language that would work on a command prompt? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

1st Mar 2017, 2:21 AM
Thadeus Ward
Thadeus Ward - avatar
2 Answers
+ 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
1st Mar 2017, 2:52 AM
nextco
nextco - avatar
+ 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.
1st Mar 2017, 7:12 AM
Ettienne Gilbert
Ettienne Gilbert - avatar