Scripting is a form of programming generally characterized by low formality, loose typing, and no requirement for explicit compilation. There are numerous scripting languages, and these are used in a wide variety of scenarios - command-line applications, GUIs, server-side applications, extension ...

learn more… | top users | synonyms (1)

0
votes
0answers
42 views

XPATH ignore <br> within <div>

Sorry, I'm new to XPATH and having some issues with a query. I tried to search for a solution but no luck so far. I'm using Google Docs importXML with XPATH and a static website to get information ...
1
vote
2answers
69 views

Securely execute shell script via website

I'm trying to run a shell script using php exec. The thing is - this isn't very secure as I am posting to it via a html text box i.e. <?php $output = shell_exec ('whois '.$_POST['domain']); echo ...
0
votes
2answers
28 views

Accessing android camera using BitWebServer (PHP)

Does anyone know of an easy way to grab an image from an android camera using the PHP engine built into BitWebServer? I suppose if need be, I can write an android app and make a sys call but I was ...
0
votes
0answers
46 views

Calling an HTA app with Inline Parameters like PHP or ASP

Is it possible to call an .HTA app hosted on an internal web site (intranet) and pass in arguments/parameters using standard "?var=value" and "&var=value" syntax? I know it's possible to launch ...
0
votes
6answers
44 views

Remove part of the path in shell

echo "/dir1/dir2/filename.txt" | sed ???? What should be the Sed expression to get the output as /dir1/filename.txt If there is any other simpler way to achieve this, that is also welcome.
0
votes
2answers
54 views

Finding Prime Numbers - “factor” command not found

I am writing a bash script to find all of the prime numbers less than a given integer. Here is the code: #!/bin/bash BADARGS=65 if [ -z $1 ] then echo "Usage:`basename $0` cannot have a null ...
0
votes
1answer
106 views

PowerShell Convertto-HTML add data to column

I have this script $a = "<style>" $a = $a + "TABLE{border-width: 1px;border-style: solid;border-color:black;}" $a = $a + "Table{background-color:#ffffff;border-collapse: collapse;}" $a = $a + ...
1
vote
2answers
51 views

Javascript if only works outside function

I can't get my javascript function to work. if (!cHp) { cHp = 200 }; Works like a charm, but function checkNull(x, y) { if (!x) { x = y; } } Doesn't work at all. What am I doing wrong?
0
votes
1answer
62 views

How to set option “compare text” for MSScriptControl.ScriptControl?

Dim scriptControl As Object = CreateObject("MSScriptControl.ScriptControl") scriptControl.Language = "vbscript" Dim result As Object = scriptControl.Eval("""aB""=""AB""") result will be False ...
1
vote
1answer
43 views

Using lynx in a bash script

I am trying to write a bash script that will convert all html files in a directory to text files. I figured I could do this using lynx. Such as... lynx -dump index.1.html > index.1.txt This ...
1
vote
1answer
48 views

Fake Name Data to MySQL Query

I have a database that contains some confidential personal information. For data analysis purposes, I'd like to send that data out to some people. However, the anonymity of the data needs to be ...
0
votes
2answers
59 views

extract a number and the string after it

i have a script that parse log files and in a part of programming i have to know if a message is transmitted or not and by reading those lines i can get the Message id and know wether the message is ...
0
votes
2answers
194 views

Corona SDK: iPhone 5 adjustment

I am using the following config.lua file when creating my mobile application. The screen will not adjust to iPhone5 when building to device. It will, however, adjust when running on the simulator ...
1
vote
2answers
17 views

Unix utility to finish this term frequency counter pipeline

Right now I have to write a little script that takes a directory of documents(the example given is each chapter in Revelation) and turn them into a term frequency document. So far, I have: foreach ...
0
votes
1answer
122 views

How to schedule a powershell script for automating wack process through windows scheduler?

I am able to execute the below command from PowerShell prompt and command prompt, but I am unable to schedule it using windows scheduler. powershell script code: appcert.exe test -apptype metrostyle ...
0
votes
1answer
93 views

PHP - Creating a download link in HTML to all the list items fetched from a local folder

Lets say I have following script in PHP to create list of all the files from directory path /Users/abc/bde/fgh. Now I want to make them downloadable links for the same files, how can I achieve that? ...
1
vote
1answer
53 views

Why does this Powershell function return more than just true/false?

Function lyncNotFocused { # We need to check if the Lync window (conversation?) has focus or not. $hwnd = [WhichWindowActive]::GetForegroundWindow() $proc = [IntPtr]::Zero ...
0
votes
2answers
42 views

Bash Script : Unwanted Output

I have this simple bash script: I run ns simulator on each file passed in argument where last argument is some text string to search for. #!/bin/bash nsloc="/home/ashish/ns-allinone-2.35/ns-2.35/ns" ...
0
votes
1answer
81 views

Creating a shell script with config to run basic commands ssh connection with output

I'm looking at creating a small shell script with a config file where I can set the IPs of the servers that need to checked and execute a few simple commands like who, date, uname, etc. and print the ...
0
votes
1answer
84 views

Haskell - How to add to a list [closed]

I currently have a list of films. These fans are also coupled along with their year and fans. Like so: testDatabase :: Database testDatabase = [ ("Casino Royale", ["Daniel Craig", ...
0
votes
2answers
74 views

Bash Script error: [: missing ]

#!/bin/bash if [ `date +%u` -lt 6 && `date +%H` == '19' ] ; then echo 'Sorry, you cannot run this program today.' else echo 'yes, you can run today' fi The script above is to run a ...
-1
votes
1answer
58 views

Bash shell scripting for answering the questions of SSH key generation

I want to answer the question of that appear in the bash shell Ex: at the script #!/bin/bash ssh-keygen -t rsa #it will appear a question >> Enter file in which to save the key # ...
2
votes
3answers
153 views

How check for Command-Period in a tight loop?

I'm implementing a scripting language where the user might be causing an endless loop by accident. I want to give the user the opportunity to cancel such a runaway loop by holding down the command key ...
0
votes
1answer
192 views

When using Luajit, is it better to use FFI or normal lua bindings?

I just started tinkering with Luajit with C++ and I see that it's FFI is really easy to use but I am not sure if it is the best solution for all (or at least most) cases. So is it better to use one ...
1
vote
2answers
41 views

Going into directory using bash variable

I have the following functions in my ~/.bash_aliases file mycd() { dir=$(cat) echo "$dir" cd "$dir" } alias c=mycd and gotoD() { find -name $1 -type $2 | awk '{ print $0 }' | sort -k2 | ...
1
vote
2answers
63 views

need to set environment var for a back-ticks command

how to pass an environment variable to a shell command that I execute using Kernel#system et al? say, I want to run %x{git checkout -f} but this command relies on the environment variable ...
0
votes
0answers
83 views

How to Load/Unload a DLL and use its methods inside a script executed by Delphi DWScript

Hi my questions is regarding DLL loading/ binding inside a script because I want to create a scripting interface where there could be plugins based on Delphi DWScript. Some of those plugins could lad ...
1
vote
1answer
40 views

Pygame and IDEs — source changes require python restart

I can run my pygame project fine in either of the IDEs I use (Spyder and IEP), but then I try makes changes to some of the .py files and when I run the project again, the changes don't show up. I ...
4
votes
1answer
96 views

Is there anything like GroovyScriptEngine and GroovyClassLoader in Scala?

I noticed scala is jsr 223 compliant https://issues.scala-lang.org/browse/SI-874 ... but is it able to do stuff like GroovyScriptEngine ? I consider adding a scala scripting support to our product so ...
-1
votes
1answer
75 views

Monitor Drive. Using VB Script

I want to monitor a drive for file changes, using VBScript. I have the below code. It works fine for InstanceCreationEvent and InstanceDeletionEvent. But InstanceModificationEvent is not happening. ...
4
votes
1answer
128 views

Using C# as a scripting language for a C# application

I have developed an application that uses c# script files for certain configurations and settings. The script file contains various user generated objects and certain functions on those objects. ...
1
vote
1answer
157 views

How to convert .pcm files to .wav files (scripting) [closed]

I would like to convert .pcm files to .wav files using a tool such as SOX in a Python script. The tool needs to be cross platform compatible (Windows & Linux). Any suggestions?
0
votes
2answers
112 views

How to write a ping to a text file using VBS

If I am using VBS to run some CMD commands, in this example ping, how could I write the command to a text file using VBS not DOS? Set objCmdTest = WScript.CreateObject ("WScript.Shell") Set Output = ...
0
votes
1answer
46 views

Rename a vbscript process

When we run a *.vbs file, in processes, we used to get "wscript.exe". We can change this "wscript.exe" to our custom name by creating a shortcut and executing the shortcut. Is it possible to display ...
0
votes
2answers
51 views

Filter “bad path” results in mdfind

Okay, so I have a script that is running a command to get a list of file-names, however some of them might not actually exist. What I'd like to do is filter this list through a pipe and remove any ...
0
votes
2answers
37 views

Echo multiple variables to dzen bar

I have a bash script that has three functions. Each has an output that I pipe to dzen2. Below is a pseudo-code version of the script. printVol() { LEVEL=getVolume VOL='Volume: '$LEVEL echo $VOL } ...
2
votes
2answers
59 views

Bash: Spliting string based on some delimiter and storing each in a variable

113050050/CS101/mysql_java.pdf the above is my string, which is stored in a variable 'line' line="113050050/CS101/mysql_java.pdf" Now I want to split $line based on delimiter / and store each ...
0
votes
1answer
39 views

How to force computer not to restart

I am writing batch script to automate the product testing. After product finished installation, I need to force computer NOT to restart. Is there any way to do that with batch script? Thank for ...
-1
votes
4answers
70 views

Python is not opening .py files [closed]

I'm trying to open a .py script on my computer but it unfortunately keeps opening in Notepad. I've tried changing the associations on my computer but even when I browse to python.exe and click it, it ...
0
votes
1answer
231 views

WMI Process Call Create will not Run Batch script properately

This is what i am trying to do: I have a NLB Cluster. There are two machines on said cluster: Node1 and Node2. I have a third machine that is not in that, or any, cluster. This third machine is ...
1
vote
2answers
44 views

Create Directories from an array in a for loop

I have an array of customer names that I want to use to make a directory. Below is the code I'm running: $ echo "$customerArray=( customer1 customer2 customer3 customer4 customer5 )" for ...
0
votes
1answer
19 views

VS2012 Solution Open scripting or automation

I need to copy standard component DLLs into a standard folder defined in every VS2012 project when the project is opened. We're not allowed to store DLLs in Subversion so I need to reload this folder ...
0
votes
1answer
95 views

Opencart send email in custom Script

I have a script in my opencart, made by myself, and want to make it send an email, but I think that when I try to get email parameters they return null. Here is my code: $email_to = ...
0
votes
0answers
23 views

FTP - skipping already sent files

Is there an easy way to automate a process so that if I want a script (.sh) to run hourly, it can check what files have already been FTPed and skip those and only send new ones? Thanks Here is my ...
0
votes
0answers
25 views

Prevent git from prompting for anything [duplicate]

We are using git in a scripted context. In some conditions would normally prompt: New server doesn't have git server in .ssh known hosts New server doesn't have keys set up Git wants to prompt ...
0
votes
1answer
45 views

Using the Get-EventSubscriber cmdlet in Powershell

I am having a problem for a script I am working on, I must have already dedicated a good 4 hours to this problem, so now I turn here. I have the follow code, shortened it for everyone: while($true){ ...
0
votes
1answer
33 views

Convert matrix elements from str to int in Python

I need to convert the elements of a matrix from str to int (after I read them from a file). I don't want to use any external library. This is what I produced so far and it's working, but I'm not ...
0
votes
1answer
29 views

GroovyShell debug script from classpath

this did help me quite alot for debugging Groovy scripts when invoked via GroovyShell. However, this still only works, when the script is loaded via fully qualified file name (e.g. ...
0
votes
2answers
40 views

Mac OS X: Execute scripts with hooks from an application

Im building an cocoa app that monitors something™ and I am planning to have some hooks for users. So I want to enable the user to put a script (Bash, Ruby, Python you name it) with a specified name ...
0
votes
3answers
29 views

Bash scripting if loop

User=0 echo "Please select av ma ji im pr" echo -n "First 2 initial of your Name eg: [av ma ji im pr]? " read User if [ $User = av ] then echo `$User` elfi [ $User = ma ] ...

1 2 3 4 5 119