A small program written to be read and executed by a command interpreter or another scripting language.

learn more… | top users | synonyms

42
votes
5answers
16k views

How exactly does <script defer=“defer”> work?

I have a few <script> elements, and the code in some of them depend on code in other <script> elements. I saw the defer attribute can come in handy here as it allows code blocks to be ...
8
votes
1answer
901 views

File redirection in Windows and %errorlevel%

Lets say we want to create an empty file in windows with the following command: type nul > C:\does\not\exist\file.txt the directory does not exist, so we get the error: The system cannot find ...
12
votes
3answers
16k views

In MATLAB, can I have a script and a function definition in the same file?

Suppose I have a function f() and I want to use it in my_file.m, which is a script. Is it possible to have the function defined in my_file.m? If not, suppose I have it defined in f.m. How do I call ...
3
votes
3answers
6k views

Extract data from HTML table with BASH script

I am trying to create a BASH script what would extract the data from HTML table. Below is the example of table from where I need to extract data: <table border=1> <tr> ...
10
votes
6answers
5k views

Seeing if data is normally distributed in R

Can someone please help me fill in the following function in R: #data is a single vector of decimal values normally.distributed <- function(data) { if(data is normal) return(TRUE) else return(NO) ...
9
votes
4answers
9k views

jquery html() strips out script tags

I need to replace the content of a div in my page with the html resultant from an ajax call. The problem is that the html have some necessary scripts in it and it seems that jquery html() function ...
29
votes
8answers
9k views

Auto increment version code in Android app

is there a way to auto-increment the version code each time you build an Android application in Eclipse? According to http://developer.android.com/guide/publishing/versioning.html, you have to ...
9
votes
8answers
9k views

How do I protect javascript files?

I know it's impossible to hide source code but, for example, if I have to link a JavaScript file from my CDN to a web page and I don't want the people to know the location and/or content of this ...
26
votes
3answers
4k views

Command substitution: backticks or dollar sign / paren enclosed?

What's the preferred way to do command substitution in bash? I've always done it like this: echo "Hello, `whoami`." But recently, I've often seen it written like this: echo "Hello, $(whoami)." ...
9
votes
1answer
4k views

Is it possible to run Node.js scripts without invoking `node`?

I like javascript, so I was excited when I heard about Node.js, a V8-based Javascript runtime. I would prefer to do my shell scripting going forward in Javascript. My issue is this: how can I run my ...
24
votes
5answers
3k views

Is the 'type' attribute necessary for <script> tags?

I've seen both this: <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script> and this: <script type='text/javascript' ...
12
votes
4answers
3k views

Can the <script> tag not be self closed?

I had this code in my website <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"/> <script type='text/javascript' ...
0
votes
2answers
362 views

Ant script to choose between multiple version of classpaths

I am new to Ant scripts. below is description of requirement in my workspace, there are various projects and I have to have my project work on RAD and eclipse IDE as well as Websphere , tomcat and ...
40
votes
10answers
13k views

How to require commit messages in VisualSVN server?

We've got VisualSVN Server set up as our Subversion server on Windows, and we use Ankhsvn + TortoiseSVN as clients on our workstations. How can you configure the server to require commit messages to ...
23
votes
4answers
45k views

How can I add numbers in a bash script

I have this bash script and I had a problem in line 16. How can I take the previous result of line 15 and add it to the variable in line 16? #!/bin/bash num=0 metab=0 for ((i=1; i<=2; i++)); do ...
6
votes
4answers
38k views

How to run the sftp command with a password from Bash script?

I need to transfer a log file every night to a remote host using sftp from a Linux host. I have been provided credentials for the same from my operations group. However, since I don't have control ...
3
votes
1answer
6k views

What's the difference between a script and a function in MATLAB?

What are the differences between a MATLAB script file and a MATLAB function file?
7
votes
4answers
427 views

Is there a performance gain in including <script> tags as opposed to using eval?

I have seen a lot of suggestions about how one should add code dynamically like so (source): var myScript = document.createElement("script"); myScript.setAttribute("type","text/javascript"); ...
1
vote
2answers
104 views

i need get a substring from a file shell script

i need a little help with this shell script. I have a variable, represents a IP/TCP header. I need filter a traffic capture by the header selected. > var=ttl 128 > > tcpdump -Xvv -n -i ...
1
vote
5answers
5k views

jquery load() strips script tags - workaround?

Does anyone know of a work around for jquery .load() stripping out the script tags loaded from external content? There's a lot of documentation of the fact that this happens but after something like ...
0
votes
1answer
219 views

Linux Shell Script

Hi Community of Stackoverflow, I am facing a problem here with my shell script that I am designing... #!/bin/sh while : do clear echo "----------------------------- -----------" echo ...
24
votes
5answers
32k views

Using time command in bash script

I'd like to use the time command in a bash script to calculate the elapsed time of the script and write that to a log file. I only need the real time, not the user and sys. Also need it in a decent ...
23
votes
2answers
6k views

install mysql on ubuntu without password prompt

how to write a script to install mysql server on ubuntu?. sudo apt-get install mysql will install and ask for password for this how to assing password in script. #!/bin/bash sudo apt-get install ...
27
votes
4answers
8k views

Bash : iterate over list of files with spaces

I want to iterate over a list of files. This list is the result of a find command, so I came up with: getlist() { for f in $(find . -iname "foo*") do echo "File found: $f" # do something ...
13
votes
6answers
7k views

Bash script, watch folder, execute command

I am trying to create a bash script that takes 2 parameters a directory and a command, I need to watch this directory for changes and when something has been changed I need to execute the command. I'm ...
10
votes
2answers
4k views

Running script only for an 'Archive' build in Xcode 4

I have a script that I run using osascript from a Run Script Build Phase in Xcode 4. This script does some checks to try and catch any human-error in plists and suchlike. However, I only really want ...
22
votes
3answers
9k views

“find: paths must precede expression:” How do I specify a recursive search that also finds files in the current directory?

I am having a hard time getting find to look for matches in the current directory as well as its subdirectories. When I run find *test.c it only gives me the matches in the current directory. (does ...
7
votes
5answers
9k views

Padding characters in printf

I am writing a bash shell script to display if a process is running or not. So far, I'am here. printf "%-50s %s\n" $PROC_NAME [UP] This gives me an output like: JBoss ...
10
votes
13answers
3k views

One JS File for Multiple Pages

I typically put all the JavaScript scripts into one file e.g. scripts.js (the less HTTP request, the better). So, as expected, some scripts are needed for some pages, some aren't. To target a ...
3
votes
5answers
2k views

remove appended script javascript

how can I remove my appended script because it causes some problems in my app. This is my code to get my script var nowDate = new Date().getTime(); var url = val.redirect_uri + "notify.js?nocache=" ...
2
votes
4answers
745 views

System for keeping track of user favorites

On my website, I have a table movies and a table users I'm trying to have an "Add to favs" button that a user can click, which will add that movie to his favorites (ajax / javascript not necessary at ...
11
votes
5answers
1k views

WHat are the pros and cons of RemObjects PascalScript versus the DWS script?

I'm planning to include a pascal script in my application. It does not require any web access, simply access to classes in my Application. It should be fast (compiled). I see that there are a number ...
5
votes
5answers
12k views

Removing all script tags from html with JS Regular Expression

i want to strip script tags out of this html at pastebin http://pastebin.com/mdxygM0a I tried using the below regular expression html.replace(/<script.*>.*<\/script>/ims, " ") ...
1
vote
2answers
10k views

Tumblr “like-heart-button” script on homepage

How to make a 'like' button for each post without going on permalink page? I mean, even in the homepage, which script can I use to have something like the heart on this page? (mouseover the photos, ...
6
votes
3answers
5k views

Can I remove script tags with BeautifulSoup?

Can script tags and all of their contents be removed from HTML with BeautifulSoup, or do I have to use Regular Expressions or something else?
5
votes
5answers
2k views

Best way to periodically execute a PHP script?

I'd probably figure out a way to do this if I had full access to the server, however the problem is it's just a hosting service which leaves me with nothing but FTP access. I would like to run a PHP ...
2
votes
1answer
385 views

ajax loaded content, script is not executing

I am using jquery address plugin for loading pages, but without hash(#). index.html: <a href="page.html">Link</a> <div id="content"> <script> ...
0
votes
1answer
1k views

More than 20 results by pagination with Google Places API

Google's demo has this snippet to capture, by pagination, more than 20 results from place search: service.nearbySearch(request, resultList, function(status, results, pagination) { if (status ...
2
votes
1answer
810 views

Find function in Form Code Module

I am to investigate many Acccess applications and it would make my life easier to make a script, if possible. My main goal is to search through MS Access form code/module for certain words (eg dog, ...
0
votes
2answers
556 views

jquery: Keep <script> tag after .find()

I'm trying to add ajax to WordPress by jquery-ajaxy plugin, and I'm stuck with one thing: My page is loaded by ajax call, filtered, and appended to dom. So in short, it would be: data = ...
35
votes
4answers
9k views

What is x-tmpl?

Was looking for the answer on the net, but couldn't find anything. This little snack of code really frustrates me, as I can't understand it. (It's part of the plugin called: jQuery File Upload) ...
12
votes
6answers
9k views

Rename Files and Directories (Add Prefix)

I would like to add prefix on all folders and directories. Example: I have Hi.jpg 1.txt folder/ this.file_is.here.png another_folder.ok/ I would like to add prefix "PRE_" PRE_Hi.jpg PRE_1.txt ...
25
votes
2answers
22k views

Pseudo-terminal will not be allocated because stdin is not a terminal

I am trying to write a shell scipt that creates some directories on a remote server and then uses scp to copy files from my local machine onto the remote. Here's what I have so far: ssh -t ...
7
votes
3answers
3k views

Print lines from one file that are not contained in another file

I wish to print lines that are in one file but not in another file. However, neither files are sorted, and I need to retain the original order in both files. contents of file1: string2 string1 ...
22
votes
6answers
24k views

Check if a file exists with wildcard in shell script

I'm trying to check if a file exists, but with a wildcard. Here is my example: if [ -f "xorg-x11-fonts*" ]; then printf "BLAH" fi I have also tried it without the double quotes.
7
votes
2answers
236 views

Script for separating implementation from headers in a .h file

Sometimes, when working with small classes, it's a pain in the ass to separate the implementation in a .cpp file, so I put all the code in the header file (kids, don't do this). However, eventually ...
4
votes
3answers
2k views

Automatically adding generated source files to an xcode project

I am using an IDL which automatically generates source files for my xcode project. Does anyone know how I can automatically have the generated files added to the project? Currently I have to delete ...
1
vote
2answers
7k views

kill process with python

I need to make a script that gets from the user the following: 1) Process name (on linux). 2) The log file name that this process write to it. It needs to kill the process and verify that the ...
7
votes
3answers
5k views

Embedding JSON objects in script tags

EDIT: For future reference, I'm using non-xhtml content type definition <!html> I'm creating a website using Django, and I'm trying to embed arbitrary json data in my pages to be used by ...
4
votes
6answers
5k views

Using regex to extract URLs from plain text with Perl

How can I use Perl regexps to extract all URLs of a specific domain (with possibly variable subdomains) with a specific extension from plain text? I have tried: my $stuff = 'omg ...

1 2 3 4 5 9