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
1answer
7 views

Unix bash scripting and using the test -z script

So I wrote a script called MYSCRIPT with this code: if test -z $1 ; then echo "rm: missing operand" echo "'try rm --help'" for more information. fi From my understanding it means: "If the $1 ...
0
votes
3answers
24 views

Why doesn't this short bash script/function work? Possible solutions? (UNIX bash scripting)

I am trying to make an error message appear if someone runs my script but a file which doesn't exist is entered as an argument. function finder(){ if test find $1 ; then exit 0 else exit 1 fi } ...
0
votes
2answers
14 views

How can I write and append using echo command to a file

I am trying to write a script which will use echo and write/append to a file. But I have " " in syntax already in strings .. say .. echo "I am "Finding" difficult to write this to file" > file.txt ...
1
vote
1answer
32 views

When should we change the IFS variable back to its original value in scripts?

Let's say I execute this script via a cronjob: IFS=$'\n' for i in `cat "$1"`; do echo "$i" >> xtempfile.tmp; done It works fine without causing any issues. But when I run this in a ...
1
vote
1answer
33 views

how to execute a batch file from a website

I know this sounds fishy, but I'm trying to run a batch file from a website. Our users are seniors that wouldn't know how to do anything with a computer. Our software is a replacement for the windows ...
8
votes
5answers
5k views

convert binary data to hex in shell script?

feel a bit stupid asking this (sounds as basics) but can't find an answer elsewhere. I want to convert binary data to hex, just that, no fancy formatting and all. hexdump seems too clever, it ...
0
votes
1answer
15 views

How to Batch Update XML files

I have a bunch of XML that all conform to the same schema. A particular element I want to batch edit only occurs exactly once each of the XML files and has an identical xPath in each of these files. ...
2
votes
1answer
40 views

Can someone explain this short getopts bash script in plain english? (UNIX)

This is the script: file=$1 while getopts ":ivr" opt; do case $opt in i) iopt=1;; v) vopt=1;; r) ropt=1;; \?)echo "invalid option: -$OPTARG" > esac done shift $(($OPTIND-1)) So the only part I ...
1
vote
2answers
85 views

Scripting language component for Lazarus

What is the best multiplatfrom scripting language component to embed into lazarus build projects with full support of the GUI. I have tried "Pascal Script" but it has no sample code or documentation ...
1
vote
1answer
23 views

automating android CTS with python

I'm trying to automate the full CTS setup and execution with python & monkeyrunner on Ubuntu and most of it has gone very well. As the very final step, I try executing the following python ...
0
votes
3answers
62 views

Print multiple variables in one line using python

I need some assistance with a python script. I need to search a dhcpd file for host entires, their MAC and IP, and print it in one line. I am able to locate the hostname and IP address but cannot ...
2
votes
1answer
748 views

Adobe Premiere scripting

I want to automate a sequence of task on Adobe Premiere Pro CS6, thats all repeating tasks, and while doing manually consumes lots of time, :) that stars from: importing video file, image files, doc ...
19
votes
5answers
14k views

WAIT for “any process” to finish

Is there any built in feature in bash to wait for any process to finish? The wait command only allows one to wait for child processes to finish. I would like to know if there is any way to wait for ...
0
votes
2answers
17 views

Scripting.FileSystemObject returns only partial result

From a visual foxpro 9 application we use the filer.fileutils activeX object to retrieve a list of all files in a folder. This worked fine for several years. But now we only get some of the files ...
0
votes
2answers
32 views

Filter non-alphabetic characters out of string in shell script

Very simple question but can't seem to find a simple answer... I am writing a bash script which needs to remove all non-alphabetic and non-numeric characters. Eg. I want... INPUT_STRING="ABC# ...
21
votes
6answers
29k views

Object Dump JavaScript

Is there a 3rd party add-on/application or some way to perform object map dumping in script debugger for a JavaScript object? Here is the situation... I have a method being called twice, and during ...
2
votes
2answers
2k views

AWK extract columns from file based on header selected from 2nd file

I have the following problem that I want to solve in awk. I have one large text table, comma separated, consisting of 100k rows and 5k cols. The first row is a header and the first column is a record ...
1
vote
3answers
1k views

detect if something is modified in directory, and if so, backup - otherwise do nothing

I have a "Data" directory, that I rsync to a remote NAS periodically via a shell script. However, I'd like to make this more efficient. I'd like to detect if something has changed in "Data" before ...
0
votes
1answer
21 views

shell script to reading from file and do depending on the pattern

Need advice on shell script to read the file and echo depending on the pattern cat revs.txt 1 3 8:13 18:71 89 if x:x then echo "This is revs range" else echo " this is single rev"
18
votes
5answers
19k views

Yet Another cross-domain iframe resize Q&A

How do i resize an iframe from another domain -Edit Scroll down for some solutions.. or read on how NOT to do this :D After many hours of code hacking- the conclusion is that anything inside the ...
-2
votes
0answers
14 views

Php script to print to a specific printer [closed]

I have created a page to generate barcode after a user input. Now my issue is to print directly to a specific printer bypassing the printer selection dialog box. How can i get it done? Below is my ...
-4
votes
0answers
41 views

Form > HTML Email Code [closed]

I'm looking for help/code or concept that will allow me to deliver a form request system to a client that en-turn delivers html code based on predefined criteria. Example: Customer fills out an email ...
0
votes
2answers
32 views

Replacing a string in all config files across machines with a script

I have the below task and I am wondering what would be the best and quick way to do this. I am thinking scripting rather than a C# app but struggling with scripting in DOS. I wanted to use powershell ...
0
votes
1answer
15 views

Automatic conversion of evtx to plaintext logs

I have a Windows Server 2008 running MicroSoft Exchange. The Audit Logs are stored in evtx and I am trying to export the logs to a 3rd party collector. The agents we have used (Snare Epilog, open ...
12
votes
5answers
2k views

Can I use perl's switches with /bin/env in the shebang line?

I want to run perl -w using env. That works fine on the command line: $ /bin/env perl -we 'print "Hello, world!\n"' Hello, world! But it doesn't work on the shebang line in a script: #!/bin/env ...
1
vote
3answers
972 views

How do I open an Explorer window in a given directory from cmd.exe? [closed]

I see how to launch many other programs from a batch file, but I can't find a command like open on Mac OS X. Does such a tool exist on Windows? Powershell, or a Windows API call from an executable ...
55
votes
7answers
94k views

How to run a PowerShell script?

Guys and Gals, a really stupid question: How do I run a PowerShell script? I have a script named myscript.ps1 I have all the necessary frameworks installed I set that execution policy thing I have ...
-1
votes
0answers
30 views

Is there a scripting language to embed on a Java app that has a common interface in PC and Android? [closed]

My current project is a multiplatform application developed in Java using libgdx for a common framework for graphics. The app that should allow extensibility by users to script their own "character ...
15
votes
6answers
15k views

How to count lines in a document?

I have lines like these, and I want to know how many lines I actually have... 09:16:39 AM all 2.00 0.00 4.00 0.00 0.00 0.00 0.00 0.00 94.00 09:16:40 AM all 5.00 0.00 ...
0
votes
1answer
54 views

How can I get Autohotkey to press a differnet button with a button input?

~LALT:: Send {DELETE DOWN} ~LALT UP:: Send {DELETE UP} ~NUMPAD0:: Send {DELETE DOWN} ~NUMPAD0 UP:: Send {DELETE UP} There is my current code. I want to make it so that when I'm holding down either ...
2
votes
1answer
120 views

Run test from eclipse feature using ANT

I have a feature with test plugins. And i use ant+jococo for run test-suite from each plugin. Test-suites have the same name like "Tests". Now use hardcoded plugin names like <run-test-macro ...
0
votes
1answer
26 views

Copying and renaming a file into the proper subdirectories

I have a particularly tricky batch scripting request. I have a file/folder structure like this /mapcfgs/ /folder 1/ somefile.new somefile.old /folder 2/ someotherfile.new ...
0
votes
2answers
37 views

Checking output of multiple variables in bash

Right now I have multiple commands defined as variables in my bash script like so: LSIBATTSTATE=`/var/lib/einarc/tools/lsi_megacli/cli -AdpBbuCmd -GetBbuStatus -aALL | grep 'Operational'` ...
0
votes
0answers
18 views

creating a script running thorugh powershell that will query multiple tables and create a cardholder and badge

if you read the title then you the baisc gist of it. im creating a script that takes in an insert into query and creates a cardholder, badge and access level. also it has to run though powershell ...
-1
votes
0answers
10 views

Software Search Modification

at my work we use a software called Struxureware, which monitors the status of SNMP devices connected to our network. It has a built in "discovery" tool where one can type an IP address range, and it ...
4
votes
1answer
46 views

How do I find the sum of the values entered in certain fields that were created dynamically using Javascript?

I've written code that creates a form displayed as a table on a HTML page. I've written Javascript to allow the user to add rows or delete selected rows. The add and delete functionalities work. But I ...
5
votes
4answers
11k views

sudo for single command in bash script

this may be a stupid question. i have a script that i want to be portable between mac os x and a linux box i use. in OSX, a command in the script requires sudo, where on the linux box, it does not. ...
25
votes
3answers
28k views

Do I have any way to check the existence of a directory in ANT? (Not a file)

Any idea on checking the existence of a folder using ANT? We can check the existence of a file but can we do the same for a folder as well?
1
vote
1answer
57 views

Merge Two text files line by line using batch script

I have 2 text files; A.txt and B.txt and I want to merge them to make C.txt using a batch script. However (here's the tricky part) I wish to do it so each line from A.txt is appended with a space ...
0
votes
0answers
21 views

Spidermonkey 1.8.5 building examples

I am attempting to use spidermonkey. I have built from source and am simply trying to get the code example to compile. I have correctly compiled the example on OS/X , working on a mingw build atm. ...
0
votes
2answers
30 views

Using two variables in a loop to access two diff file types in the same folder shell scripting linux

I am trying to call two diff files types in a loop. I have a1.in-a10.in files and b1.out-b10.out files. I wanna access both files simultaneously. I dont want to use nested loops but simultaneously. ...
45
votes
7answers
17k views

Is there a jQuery autogrow plugin for text fields?

I have a found various plugins for autogrowing a textarea, but not input text fields. Does anybody know if any exist?
1
vote
1answer
31 views

parsing inputs to shell script on command line

I'm trying to assign everything else after strings to $@ but orange is also picked. I thought the shift will take as rest of the args but the output is picking orange too. $ cat try.sh ...
0
votes
1answer
6 views

creating universal navigation using “.innerHTML=(”"); [closed]

Im pretty new when it comes to js but what I Basically wanted to do was create a universal navigation using the innerHTML method so i wouldnt have to replace whole html contents. I can just run the ...
0
votes
0answers
18 views

WIN2K8: Running two netsh commands in one line; hitting a syntax error

I've written a Windows script to change NIC interface metrics, and need to condense it to two commands, because of the manner in which it is executed. To render a long story short, I support an ...
1
vote
2answers
18 views

Create output file names based on input file name with autonumbers shell script linux

I need to automate a process using a script and generate output files similar to the name of the input files but with some additions to it. my process is a Java code. two input arguments and two ...
0
votes
2answers
73 views

bash script unable to get the variable

On command line this works like this: svn log "$src_url" --stop-on-copy \ | awk -v RS="--+" -F'|' ' /ticket-101/{print $1}' \ | grep "^r" \ | cut -d"r" -f2 \ | cut -d" " -f1 Output: 6359 ...
-3
votes
0answers
48 views

Rotate an hexadecimal number in python [closed]

I have a hex as 00000001 ,00000002 till 0000000A .... 0000000F I want to rotate them so that it will become like this 10000000,... A000000, F000000 I am using python scripts here to do this.
0
votes
1answer
19 views

Batch print out exit code of the scipt

Hi lets say i have batch script that returns 0 on success and 1 on error and i want to print/pass exiting value to console/another command something like echo script param1 param2 expected output ...
0
votes
0answers
15 views

Passing parameter to FTP macro

I have developed a bash script that contains an FTP invocation. Because the actions i do are based on a routine i have added a macro inside the .netrc file in my home directory. This is a small ...

1 2 3 4 5 121