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)

7
votes
3answers
104 views

Updating values from external workbook automaticly

I have the following workbook setup: Workbook A has a link to x amount of workbook B's and fetches data from them. The workbooks B have links to some other workbooks and fetches data from them. ...
-4
votes
1answer
31 views

How to Use Multiple if then

echo "n Latrest version" echo "p Previous version N-1" echo -n "Which version you want to BackUP [n or p]? " read Ver if [ $Ver = n ]; then echo `$n` if [ $Ver = per ]; then echo `$p` echo ...
-3
votes
2answers
48 views

if then conflicts php [closed]

I want to do a quick if-then to echo the s if it has more than 1 hour. The variables are already assigned if I were to do it on the next line. Any kind of help I can on this is greatly appreciated. ...
0
votes
3answers
75 views

Bash scripting missing ']'

I am getting an error ./test.sh: line 13: [: missing `]' in the file test.sh I tried using brackets and other options such as -a or by checking the size of the file p1 but the error is always there ...
0
votes
1answer
71 views

wget spider returns all URLs twice — where is the bug?

I was looking for a script to create a URL list for a sitemap and found this one: wget --spider --force-html -r -l1 http://sld.tld 2>&1 \ | grep '^--' | awk '{ print $3 }' \ | grep -v ...
-1
votes
2answers
42 views

How do I write a script to make an API request and store it on my server every day? [closed]

Sorry if this is basic, I haven't ever had to do something like this before. I'm building a website that makes API calls to services (such as Soundcloud), and the calls can sometimes take a while ...
0
votes
1answer
58 views

Revising an one liner [closed]

I've cobbled together a one-liner so I can quickly find any drives that have medium errors on a server. This is like so: /var/lib/einarc/tools/adaptec_arcconf/cli getlogs 1 device tabular | egrep ...
0
votes
1answer
14 views

A 'select-and-transform' XML transformation language?

I would like to write XML document transformations as one-time commands and in standalone scripts, the same way that I use Unix tools such as grep, sed, awk, etcetera, to manipulate text files. The ...
0
votes
0answers
18 views

Photoshop CS6 scripting PDFSaveOptions not initializes

var so = new PDFSaveOptions so.convertToEightBit = true doc.saveAs(newFn, so) Code broken on saveAs() function: "illegal argument - argument 1" On breakpoint, in data explorer all of "so" ...
1
vote
2answers
57 views

Parsing string commands for a basic scripting language

I'm trying to interpret string commands to run associated scripts. This is what I have so far: // A typical command that can come from a TextBox control string command = "Create"; ...
1
vote
1answer
19 views

How to script keyboard clicks in a browser on a mac

The title says it all. I'm trying to script keyboard clicks in the browser (preferably Chrome). It's simple, from the current page I want to tab through 5 elements, then click enter, then repeat. ...
-7
votes
1answer
67 views

Programming for IOS, how is it done?

On my Cisco 800 router in my home, I am seeing something called the "IOS", I know it is Internetwork Operating System. But in the world of programming is this a language like Python, Ruby, Java, etc? ...
0
votes
0answers
29 views

grails script requires grails-app plugins as dependency

One of my grails script to create a jar requires dependencies like javax.persistence.Valid and others from the hibernate validator jar files. These dependencies are resolved for the grails project ...
0
votes
0answers
26 views

Torque 3d hide scripts

I can not find info about how hide my scripts and mesh files in proj's release. What if I don't want share my data (scripts and mesh)? Is it impossible with Torque 3d? Or I must buy license version on ...
0
votes
1answer
64 views

How can I run multiple UNIX commands, using an input file, just once

I'm relatively novice in Unix Shell Scripting. How can I run the (following) multiple UNIX commands (put into a script, say "discover.sh", using my_log.txt input-file just once? Eventually, I would ...
1
vote
1answer
33 views

Linux scipt variable is not recognized properly

I have a question about shell scripting in Linux. I've been trying to get this code working for hours now, and it does something I don't understand. The purpose of the code would be to add users with ...
0
votes
0answers
23 views

Run a script upon closing a folder/window? [closed]

(offtopic:trying to repost a question which is supposed to be deleted....) I'm trying to figure out how to: - run a script(fx. batch) after I close a certain folder/window in Win7 For instance, I ...
0
votes
2answers
74 views

bash script to copy file into multiple specified directories

I'm looking to create a script that takes a file and copies the file to multiple directories e.g. cp2dir filename dir1/ dir2/ dir3/ I've dug around and it looks like my route is to use cat ...
-2
votes
1answer
137 views

How do I create a batch file which send emails of ip [closed]

how do i create a batch file to send me the ip of the computer it's on by email everytime the computer connects to the internet
0
votes
1answer
72 views

windows batch file to compile and run scala script

I want to write a windows batch file that first compiles a scala script and then runs it. Somehow when i run the .bat file, it will only perform the first command, not the second. It will only ...
0
votes
1answer
51 views

controlling interactive console programs from batch file (cmd)

I have a WindowsXP console program that offers an interactive cli mode (some cisco tool) prompting for username and password. How can I programmatically pipe those in from a .bat file?
0
votes
0answers
13 views

Automation of non gui non database unix application

I have two components which are used by service provider on unix platform which doesnt have any GUi or the database. When Component1 recieves a network MAP message it will process it and forward the ...
0
votes
1answer
36 views

Automation of sum( ) in Excel

I have an excel sheet say First.xls with some columns, looks like : Sno Type Desc 1 Hard xxxx 2 Soft yyyy 3 Medium zzzz 4 Hard aaaa 5 Medium zbzb 6 Medium acac n ...
0
votes
1answer
143 views

Call VBScript With Return Value on Remote Machine With Powershell

I need to call a remote VB script from Powershell, and the VB script needs to run on the remote machine. I have been using \$computer\root\cimv2:Win32_Process").Create(C:\test.vbs) This works, ...
0
votes
1answer
82 views

test if file(s) from a given pattern exists in bash [duplicate]

How do I test if a file (or many) named from given pattern exists and do stuff based on that test? This is my failed attempt: [[ { ls ../outputListWorkerPid_* | wc -l } -ge "1" ]] && echo ...
0
votes
1answer
20 views

Getting error importing assets files after installing gems

Everytime I install a new gem and we must include a new script or a new CSS, it simply doesn't work. I put the gem in the Gemfile, run bundle install, everything works fine, gem is installed. Then ...
4
votes
1answer
64 views

In Bash how do you see if a string is not in an array?

I'm trying to do this without adding additional code, such as another for loop. I can create the positive logic of comparing a string to an array. Although I want the negative logic and only print ...
0
votes
1answer
71 views

Compiling my scripting language

I have developed a frame work for a scripting language and I am trying to make a compiler for it to output onto a certain file a custom Hex code to be read by an interpreter for applications such as ...
-1
votes
1answer
103 views

How do I run ssh-keygen so that it overwrites without prompting if a key cert exists? [closed]

So I have this scenario where a remote call will be made to a target machine. It's possible that more than one call will be made to generate the ssh keys, in which case the script will hang as it ...
0
votes
3answers
82 views

Clientside Scripting Language [closed]

Is Javascript the only language that can utilise the DOM API? Is there a DOM wrapper for Python?
0
votes
1answer
29 views

Bash: while terminate early when reading from file

I am trying to run a file that contains a sequence of commands/scripts to run with arguments, like: ls /etc/ cat /etc/hosts/ script.sh some parameters ... This seems to work fine but in some cases ...
0
votes
0answers
49 views

SVG library for C++ for creating interactive svg files

Is there a simple lib that I can use to create interactive svg with C++? I've found this one: simple-svg , but I can't add <script> tag, or <set> tag to elements. In Python I've ...
0
votes
1answer
33 views

awk: add a line if missing

I've an awk script which processes .ICS calendar files. I need to add the ATTENDEE line if it's missing. I already have a script which parses all the events taking in considerations only the ones I ...
0
votes
1answer
60 views

Creating and writing a file C++

I have made a scripting language and I was writing a program which would 1: Ask for your path to read the script and 2: Compile the code into a custom Hexadecimal which would be read by another ...
0
votes
1answer
41 views

Prevent / Avoid ^M in linux/unix script

i have script like this below : testing.sh #!/bin/bash while read inputline do plugin="$(echo $inputline | cut -d, -f 3-)" echo \"$plugin\" > test1.out done < $1 exit 0 ...
0
votes
0answers
43 views

how to read whois query without including the header

I have a script to check domain name for their existance including my own country ccTLD (.tz) now everytime I check for the domain existance I recive a header that I don't intend to include in the ...
1
vote
1answer
26 views

Automaticaly update text in Visio diagrams

I have build several Visio diagrams and posted them on my web server as .htm. Now I would like to make a script that update the values of the labels on the in the shapes automatically once on every ...
0
votes
1answer
179 views

TCL: Open file, extract data, copy files and manipulate it afterwards

i want to open a text file which has nearly the following content: $ *include_path path $ $ *include test.txt $ $ *include test1.txt $ *include ...
3
votes
2answers
117 views

sending “ping” output to a variable

I am trying to ping some ip addresses in my router. I use this code: 'for {set n 0} {$n < 10} {incr n} {puts [exec "ping 199.99.$n.1]}' but this will show the output. the issue is that I don't ...
0
votes
2answers
58 views

Add data to Bash array over multiple scripts

I need to pass array data between two bash scripts. I have a controller configuration which both scripts source (etc/config). In this file I have three arrays declared: declare -a exeSuccess declare ...
0
votes
3answers
528 views

Trying to export an array to csv using powershell (array objects are ; delimited and contain newlines)

Okay, so I have this array, which is essentially an Import-Csv of a CSV file. Each object in the array is an entire CSV row. The input file renders properly when I open it with Excel (The columns ...
0
votes
0answers
70 views

Windows Scripting (WSF) read output and enter text dependant on that output

I have a Windows Script File (.WSF): It's a simple script that telnets to a device, and runs a command: <job> <script language="VBScript"> Option Explicit On Error Resume Next Dim ...
1
vote
5answers
63 views

Alternate merge strings in BASH

From KS=$(locate acpi-support | grep "/etc/rc" | cut -f4 -d/ | tr -dc '[K,S]') LEVELS=$(locate acpi-support | grep "/etc/rc" | cut -f3 -d/ | tr -dc '[0-9]') echo $KS echo $LEVELS I get the ...
2
votes
2answers
112 views

Running script files and use of Css files with Spring MVC?

I'm developing a Spring MVC application and i have my login page (login.jsp) that should call scripts and link some css files . The problem is the applications doesn't run scripts . here is my files ...
0
votes
2answers
56 views

Shell command on each line of file

I am trying to write a Perl script which will do the following: 1. Open a file which, in each line, contains the location of multiple files (Say File A, file B) 2. Do an egrep on each of these files ...
0
votes
1answer
73 views

Bash Script: How to use variables from list

I am trying to write a script that will report back the last time a file was updated in a folder. The folders are created everyday Example: /home/user/todaysdate. Inside todaysdate folder exsist that ...
0
votes
0answers
223 views

Powershell MYSQL query syntax with Variable

The sqlwriterow function I sends a query and retrieves the data from the specific row I'm looking for. I have a problem when I send querys containing powershell variables. Now instead of writing ...
0
votes
1answer
48 views

How to sequentially execute a command on every file in a directory?

I have a directory I'm polling through cron for new uploads and I'm running a sequence of scripts on each upload. one part of the program retrieves an image from the web using the name of the ...
0
votes
2answers
143 views

ajax load content into div scripts not working (one is one isn't)

Did ask that earlier but noticed something. Got a main page which loads external PHP into a DIV using this code: $(document).ready(function() { // Stuff to do as soon as the DOM is ready; ...
0
votes
1answer
87 views

how do i get drive letter batch script is running from

I have a batch script on a cd. Whenever I try to run it and enter %~d0, it returns the C: drive instead of F:, which is my cd drive. I would be grateful if someone could help me find a way to find the ...

1 2 3 4 5 119