Questions tagged [scripting-language]

A scripting language or script language is a programming language that supports the writing of scripts, programs written for a software environment that automate the execution of tasks which could alternatively be executed one by one by a human operator.

A scripting language or script language is a programming language that supports the writing of scripts, programs written for a software environment that automate the execution of tasks which could alternatively be executed one by one by a human operator.

Scripts can be written and executed on the fly, without explicit compile and link steps; they are typically created or modified by the person executing them. A scripting language is usually interpreted from source code or bytecode. By contrast, the software environment the scripts are written for is typically written in a compiled language and distributed in machine code form; the user may not have access to its source code, let alone be able to modify it.

For more information see Wikipedia Entry about Scripting language

275 questions
2
votes
1 answer

PHP Register Successfully script is not working

After registering there is no "Registered Successfully" message and no redirection to index.php. Need help, please.
Rain Airos
  • 47
  • 7
2
votes
2 answers

prevent duplicate variable and print using awk statement

I am iterating through a file and printing a set of values using awk echo $value | awk ' {print $4}' >> 'some location' the command works fine , but I want to prevent the duplicate values being stored in the file Thanks in advance.
david xavier
  • 71
  • 1
  • 5
2
votes
0 answers

Generating API interfacing code for a scripting language from an existing C++ header file

I intend to use Squirrel as a scripting language for my C++ application. Naturally, there should be an API for interfacing with the C++ code (for things such as accessing and modifying attributes in my C++ program). This API would consist of a bunch…
j_schultz
  • 649
  • 13
  • 29
2
votes
2 answers

Javascript function assigned to variable with var

I converted my CoffeeScript code to JavaScript using http://js2coffee.org ResetControls = -> $("#menu_item_url").val "" $("#menu_item_name").val "" $("#resource_id").prop "selectedIndex", 0 $("#resource_type_id").prop "selectedIndex", 0 It…
Annie
  • 3,090
  • 9
  • 36
  • 74
2
votes
3 answers

Iterate through folders with names like folder0100, folder0101 to folder1100 in shell script

I wrote a small shell script to iterate through folder with names having numbers in them. The script is as below. #!/bin/bash for (( i = 100; i < 1000; i++)) do cp test0$i/test.out executables/test0$i.out done here he script traverses through…
ajay bidari
  • 693
  • 2
  • 10
  • 22
2
votes
3 answers

Converting XML or HTML to Wiki mark up - what approach would you choose?

I need to convert HTML documents (generated from DocBook XML documents) to the Wiki mark up language, in particular to the PM Wiki mark up language. The goal is to include the company's application operations guides in our newly created wiki. This…
b.roth
  • 9,421
  • 8
  • 37
  • 50
2
votes
1 answer

Which programming language is simplest to use (for the user) as an integrated scripting language?

I'm writing a multiple choice test program for teachers. The formula for the marks is: (points awarded) / (maximum score) * 5 + 1. This gives a mark in the range [1,6]. Now I want to add a scripting language, with which a teacher can define the…
Stefan Steiger
  • 78,642
  • 66
  • 377
  • 442
2
votes
7 answers

Which ingame scripting language should I support?

The ingame script will control NPC/AI logic. If I were to implement ingame scripting feature which language should it support? JavaScript (builtin browser support) TCL (interpreter in java) Lua (popular) Squirrel CSI Other Keep in mind my…
zproxy
  • 3,509
  • 3
  • 39
  • 45
2
votes
2 answers

Passing IFS values to a dynamic array

i have a Oracle output (select output) as cand1 cand2 cand3 cand62 now i need to store these values in an array through shell script. #!/bin/bash instant_client="/root/ora_client/instantclient_11_2" output=`$instant_client/sqlplus -s…
Driver123
  • 133
  • 1
  • 11
2
votes
3 answers

Is it possible to write scripting language that translates to C code?

I have an idea to create scripting language which will make people to program easier doing a lot of macros, functions, simpler function names everything more simpler for simple person to work with. That code (custom scripting language) then should…
2
votes
2 answers

Statically Typing a Scripting Language in Java

I'm building a scripting language in Java for a game, and I'm currently working on the parser. The language is to be utilized by players/modders/myself to create custom spells and effects. However, I'm having difficulty imagining how to smoothly…
Philip Guin
  • 1,452
  • 15
  • 21
1
vote
1 answer

How to use [function] in webdna

I have been spending hours digging in Govinda great job in WebdnaCodeSparker. I must confess I have never been using the [function] and I now wondering how to use it... I went thought the doc, it clear to me how to send variable to a function that…
1
vote
1 answer

high performance runtime

It’s the first time I submit a question in this forum. I’m posting a general question. I don’t have to develop an application for a specific purpose. After a lot of “googling” I still haven’t found a language/runtime/script engine/virtual machine…
1
vote
1 answer

Howto anchor a Group of Elements to a specific TextFrame in InDesign CS5 javascript

I have written an importscript which places articles into a Indesign masterspread from a xml file. Every article will be placed into a new textframe. Every article can have multiple pictures with a caption. The picture and caption will be grouped…
ThorKhan
  • 58
  • 8
1
vote
9 answers

What scripting languages are similar to ECMA?

I am looking for an ECMAScript alternative to work as a scripting language for custom application logic. There are things I like about ECMA, especially the syntax for the newer spec(like AS3). Unfortunately, the AS3 engine is not open source to be…
Kekoa
  • 27,892
  • 14
  • 72
  • 91