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)

391
votes
129answers
34k views

Stopping scripters from slamming your website hundreds of times a second

[update] I've accepted an answer, as lc deserves the bounty due to the well thought-out answer, but sadly, I believe we're stuck with our original worst case scenario: CAPTCHA everyone on purchase ...
311
votes
11answers
218k views

How do I tell if a file does not exist in bash?

I've used the following script to see if a file exists: #!/bin/bash FILE=$1 if [ -f $FILE ]; then echo "File $FILE exists." else echo "File $FILE does not exist." fi What's the correct ...
272
votes
18answers
287k views

How do I split a string on a delimiter in bash?

How do I split a string based on a delimiter in Bash? I have this string stored in a variable: IN="bla@some.com;john@home.com" Now I would like to split the strings by ';' delimiter so that I have ...
172
votes
18answers
74k views

What is the difference between a method and a function

I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons. I am having trouble getting my head ...
140
votes
11answers
127k views

How do I prompt for input in a Linux shell script?

I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
98
votes
16answers
170k views

How can you find and replace text in a file using the Windows command-line environment?

I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do ...
96
votes
14answers
58k views

In the bash script how do I know the script file name?

How can I determine the name of the bash script file inside the script itself? Like if my script is in file runme.sh, than how would I make it to display "You are running runme.sh" message without ...
87
votes
9answers
44k views

How do I create a nice-looking DMG for Mac OS X using command-line tools?

I need to create a nice installer for a Mac application. I want it to be a disk image (DMG), with a predefined size, layout and background image. I need to do this programmatically in a script, to be ...
85
votes
9answers
76k views

How to tell if a string is not defined in a bash shell script?

If I want to check for the null string I would do [ -z $mystr ] but what if I want to check whether the variable has been defined at all? Or is there no distinction in bash scripting?
83
votes
15answers
85k views

In Python, how do I get the path and name of the file that is currently executing?

I have scripts calling other script files but I need to get the filepath of the file that is currently running within the process. For example, let's say I have three files. Using execfile, ...
76
votes
10answers
24k views

Grep and Sed Equivalent for XML Command Line Processing

When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with grep and sed. But I have to deal with XML often, so I'd really ...
75
votes
12answers
38k views

How do I use Ruby for shell scripting?

I have some simple shell scripting tasks that I want to do For example: Selecting a file in the working directory from a list of the files matching some regular expression. I know that I can do ...
69
votes
15answers
66k views

SQL Server - stop or break execution of a SQL script

Is there a way to immediately stop execution of a SQL script in SQL server, like a "break" or "exit" command? I have a script that does some validation and lookups before it starts doing inserts, and ...
67
votes
78answers
13k views

What is the most useful script you've written for everyday life? [closed]

Just wondering what little scripts/programs people here have written that helps one with his or her everyday life (aka not work related). Anything goes, groundbreaking or not. For me right now, it's ...
66
votes
4answers
46k views

How do I parse command line arguments in bash?

Say I have a script that gets called with this line: ./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile or this one: ./myscript -v -f -d -o /fizz/someOtherFile ./foo/bar/someFile What's ...
64
votes
13answers
30k views

Which game scripting language is better to use: Lua or Python? [closed]

I have to program a game engine starting very soon for a 3rd year Games technology project. As a part of our project we have to integrate a scripting language for scripting our NPCs and other elements ...
64
votes
36answers
11k views

When is a language considered a scripting language?

What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. Is that the only ...
63
votes
11answers
73k views

batch scripting iterating over files in a directory

How could I iterate over each file in a directory using for? And how could I tell if a certain entry is a directory or if it's just a file?
60
votes
11answers
10k views

Using scripts in a master page with ASP.NET MVC

I'm fairly new to ASP.NET MVC, and I'm having a little trouble with scripts... in particular, I want to use jQuery in most pages, so it makes sense to put it in the master page. However, if I do (from ...
56
votes
19answers
36k views

Is there a simple script to convert C++ enum to string?

Suppose we have some named enums: enum MyEnum { FOO, BAR = 0x50 }; What I googled for is a script (any language) that scans all the headers in my project and generates a header with one ...
56
votes
16answers
8k views

How to get started with PowerShell? [closed]

I played with one of the early beta's of Powershell V1, but haven't used it since it went "gold". What is the best way to get started using Powershell? Which version of Powershell should I be using ...
55
votes
8answers
34k views

How to resolve symbolic links in a shell script

Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username ...
55
votes
12answers
7k views

Library of Useful (Difficult) SQL scripts [closed]

Does anyone know where I can find a library of common but difficult (out of the ordinary) SQL script examples. I am talking about those examples you cannot find in the documentation but do need very ...
51
votes
6answers
86k 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 ...
51
votes
6answers
70k views

Executing multiple commands from a Windows cmd script

I'm trying to write a Windows cmd script to perform several tasks in series. However, it always stops after the first command in the script. The command it stops after is a maven build (not sure if ...
50
votes
14answers
19k views

What is the best scripting language to embed in a C# desktop application?

We are writing a complex rich desktop application and need to offer flexibility in reporting formats so we thought we would just expose our object model to a scripting langauge. Time was when that ...
50
votes
3answers
17k views

Propagate all arguments in a bash shell script

I am writing a very simple script that calls another script, and I need to propagate the parameters from my current script to the script I am executing. For instance, my script name is foo.sh and ...
50
votes
4answers
25k views

Basic bash script variable declaration - command not found

This seems like such a simple question I'm embarrassed to ask it: test.sh #!/bin/bash STR = "Hello World" echo $STR when I run sh test.sh I get this: test.sh: line 2: STR: command not found ...
50
votes
8answers
11k views

How to simulate the environment cron executes a script with?

I normally have several problems with how cron executes scripts as they normally don't have my environment setup. Is there a way to invoke bash(?) in the same way cron does so I could test scripts ...
50
votes
3answers
40k views

How to declare and use boolean variables in shell script?

The way I tried declaring a boolean variable is by: variable=$false variable=$true Is the syntax correct? Also, if I wanted to update that variable would I just do the same format? Finally, is the ...
49
votes
7answers
204k views

How to wait in a batch script? [duplicate]

Possible Duplicate: Sleeping in a DOS batch file I am trying to write a batch script and trying to wait 10 seconds between 2 function calls. sleep 10 does not wait for 10 seconds. I am ...
46
votes
17answers
41k views

URLEncode from a bash script

I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters are processed ...
46
votes
11answers
11k views

How do I daemonize an arbitrary script in unix?

I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon. There are two common cases I'd like to deal with: I have a script that should run forever. If it ever ...
44
votes
7answers
34k views

Which programming languages can be used to develop in Android? [duplicate]

Possible Duplicate: Which programming languages can I use on Android Dalvik? Mostly, Android applications are written in Java. But i heard that its also possible to use Scala or some other ...
43
votes
6answers
16k 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?
43
votes
5answers
52k views

Is there replacement for cat on Windows

I need to join to binary files in *.bat script on Windows. How can I achieve that?
43
votes
6answers
20k views

Copy folder recursively, excluding some folders

I am trying to write a simple bash script that will copy the entire contents of a folder including hidden files and folders into another folder, but I want to exclude certain specific folders. How ...
42
votes
3answers
39k views

With Bash Scripting, how can I suppress all output from a command?

I have a bash script that runs a program with parameters. That program outputs some status (doing this, doing that...). There is no option for this program to be quiet. How can I prevent the script ...
41
votes
6answers
34k views

Windows equivalent to UNIX pwd

How do I find the local path on windows in a command prompt?
41
votes
11answers
7k views

Very simple, terse and easy GUI programming “frameworks”

Please list GUI programming libraries, toolkits, frameworks which allow to write GUI apps quickly. I mean in such a way, that GUI is described entirely in a human-readable (and human-writable) plain ...
40
votes
5answers
43k views

How to get current username in Windows Powershell?

How to get the current username in Windows Powershell?
40
votes
8answers
22k views

Lua vs. Other scripting languages [closed]

I wonder why a lot of programmers claim that Lua is faster than any other scripting language? What did they do that is more efficient than other languages? Is there something completely different in ...
39
votes
13answers
31k views

windows batch: sleep

How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).
39
votes
6answers
36k views

How do I write a bash script to restart a process if it dies?

I have a python script that'll be checking a queue and performing an action on each item: # checkqueue.py while True: check_queue() do_something() How do I write a bash script that will check ...
39
votes
6answers
71k views

How to redirect the output of a PowerShell to a file during its execution

I have a Powershell script for which I would like to redirect the output to a file. The problem is that I cannot change the way this script is called. So I cannot do: .\MyScript.ps1 > output.txt ...
39
votes
8answers
78k views

What is a simple command line program or script to backup SQL server databases?

I've been too lax with performing DB backups on our internal servers. Is there a simple command line program that I can use to backup certain databases in SQL Server 2005? Or is there a simple ...
38
votes
10answers
10k views

Determine if a function exists in bash

Currently I'm doing some unit tests which are executed from bash. Unit tests are initialized, executed and cleaned up in a bash script. This script usualy contains an init(), execute() and cleanup() ...
37
votes
9answers
41k views

How can I remove the first line of a text file using bash/sed script?

I need to repeatedly remove the first line from a huge text file using a bash script. Right now I am using sed -i -e "1d" $FILE - but it takes around a minute to do the deletion. Is there a more ...
36
votes
1answer
7k views

Pass ALL Arguments from Bash Script to Another Command

What is the simplest way to grab all the given arguments for a bash script and pass them all into another command within the script? For example: Command Line: ./runProgram.sh [ARGS HERE] Script: ...
35
votes
9answers
58k views

How do I abort the execution of a Python script? [duplicate]

Possible Duplicate: Terminating a Python script I have a simple Python script that I want to stop executing if a condition is met. For example: done = True if done: # quit/stop/exit ...

1 2 3 4 5 119