Scripts (and scripting languages)
See original GitHub issueLooks like there are a few scripting languages used for various tasks:
$ find ChakraCore -name \*.bat -o -name \*.cmd -o -name \*.ps1 -o -name \*.py -o -name \*.pl -o -name \*.sh | grep -o "\(cmd\|ps1\|py\|pl\|sh\|bat\)" | sort | uniq -c
1 bat
26 cmd
3 pl
14 ps1
13 py
15 sh
One issue is that a number of those only run on Windows. Also there is probably no good reason to depend on Perl and Python, and given that there are only three Perl scripts it probably makes sense to drop Perl altogether. It also makes sense to pythonise the scripts described in #6410 (same scripts as in #3330).
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Top 13 Scripting Languages You Should Pay Attention to in ...
Scripting languages are a specific kind of computer languages that you can use to give instructions to other software, such as a web...
Read more >What's the difference between Scripting and Programming ...
Basically, all scripting languages are programming languages. The theoretical difference between the two is that scripting languages do not ...
Read more >Scripting vs Programming: What Are The Key Differences
Answer: Scripting Languages are programming languages that are generally interpreted at runtime. As the scripts do not need to be compiled, so ...
Read more >Scripting language - Wikipedia
A scripting language or script language is a programming language that is used to manipulate, customize, and automate the facilities of an existing...
Read more >Scripting Language Vs Programming Language - InterviewBit
Scripting languages generally emphasize the extensibility and richness of expressions. Furthermore, a programming language runs or executes ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
On a related note the test suite is run on macOS and Linux using runtests.py but on windows using an executable called rl.exe.
Ideally rl.exe should also be removed in the long term along with all of these different script types. See also #6445
I’ve now written a little python, it seems easy enough to pick up - in the long term I agree let’s aim at getting to only python scripts - though probably a little way of.