A small program written to be read and executed by a command interpreter or another scripting language.
41
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 ...
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 ...
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)
...
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 ...
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 ...
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)."
...
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 ...
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 ...
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' ...
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 ...
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 ...
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 ...
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.
20
votes
1answer
14k views
Export from sqlite to csv using shell script
I'm making a shell script to export a sqlite query to a csv file, just like this:
#!/bin/bash
./bin/sqlite3 ./sys/xserve_sqlite.db ".headers on"
./bin/sqlite3 ./sys/xserve_sqlite.db ".mode csv"
...
16
votes
6answers
11k views
How do you run JavaScript script through the Terminal?
For instance, if you were to run a Python script you would type python filename.py or if you wanted to run a C program make filename then ./ filename. How do you do this with .js files?
I appreciate ...
16
votes
2answers
169 views
My div does not exists after loading my pixel
I have a pixel and when I load it, it says:
a call to document.write() from an asynchronously-loaded external script was ignored
and then displays:
document.getElementById('gospixel') is null
...
15
votes
4answers
4k views
How can I check in a bash script if my local git repo has changes or not
there are some scripts that do not work correctly if they check for changes.
I tried it like this:
VN=$(git describe --abbrev=7 HEAD 2>/dev/null)
git update-index -q --refresh
...
14
votes
9answers
751 views
how to make this “action-packed, random data” being echoed in a terminal?
OK, this isn't really a question to achieve anything practical, but still it is a serious question and I hope it will be taken seriously and mods won't punish me for this :)
I'm sure majority of you ...
14
votes
5answers
5k views
Bash script log file display to screen continuously
I am creating an application that writes to a log file, and I need to know how in Linux / Bash to continuously display the log file to the screen (updating the screen with every new line put into the ...
13
votes
7answers
16k views
Bash script to run php script
I have a php script that I want to be run using a bash script, so I can use Cron to run the php script every minute or so.
As far as I'm aware I need to create the bash script to handle the php ...
13
votes
1answer
2k views
Ruby escape ARGV argument or string as argument to shell command
Ok this is driving me crazy:
`ls #{"/media/music/Miles Davis"}`
fails because of the space between "Miles" and "Davis"
Say I write a ruby script and a user passes file path as an argument. How do ...
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 ...
13
votes
3answers
374 views
How do I change the color of my Terminal.App when I log into my production remote on Heroku?
I remember there was an article, or a few, going around about how the author changes the color of the terminal from green (for development) to red (for production) based on the SSH address.
But I am ...
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
...
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' ...
12
votes
2answers
4k views
Change a command line argument - bash
Is there a way to change the command line arguments in a bash script. Say for example, a bash script is invoked the following way:
./foo arg1 arg2
Is there a way to change the value of arg1 ...
12
votes
5answers
4k views
How can I parse a YAML file from a Linux shell script?
I wish to provide a structured configuration file which is as easy as possible for a non-technical user to edit (unfortunately it has to be a file) and so I wanted to use YAML. I can't find any way of ...
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 ...
12
votes
5answers
614 views
In C, given a variable list of arguments, how to build a function call using them?
Suppose there's a list of arguments stored somehow, in a array for example.
Given a function pointer, how could I make a call to it passing the stored list of arguments?
I'm not trying to pass the ...
12
votes
1answer
9k views
Batch file IF statement fails with “was unexpected at this time”
I have a batch file that does the following:
@IF EXIST "C:\Program Files\MyAppFolder" (
icacls "C:\Program Files\MyAppFolder" /inheritance:r
icacls "C:\Program Files\MyAppFolder" /GRANT ...
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 ...
11
votes
1answer
271 views
Conditional shebang line for different versions of Python
I have a problem when trying to run a python script on two different computers. On each computer I would like to run the script using python version 2.7.3 however the problem I am having is that the ...
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)
...
10
votes
2answers
406 views
convert time to local time given city/state/country
I'd like to write a function that can convert a time in EST (USEast Standard Time) to a time in another local timezone.
The inputs will be "time in EST" in the form 'Y-m-d H:i:s' (i.e. 2011-08-23 ...
10
votes
3answers
8k views
HMAC-SHA1 in bash
Is there a bash script to generate a HMAC-SHA1 hash?
The equivalent of the following PHP code:
hash_hmac("sha1", "value", "key");
Thanks
10
votes
6answers
813 views
XSS prevention. Handling <script is enough?
I was wondering if checking for and removing "<script" from text entry fields would be enough to stop javascript code injection attacks?
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 ...
10
votes
5answers
2k views
What does it mean in linux scripts? #!/usr/bin/python -tt
I know that in the begining of .sh bash scripts is
#!/bin/bash
which points to the command interpeter executable.
But during watching Google Python Class http://www.youtube.com/watch?v=tKTZoB2Vjuk ...
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 ...
10
votes
2answers
882 views
Tilde for home directory doesn't expand within quotes
This is a very short script I wrote. I'm wondering why it isn't working:
#!/bin/bash
file="~/Desktop/test.txt"
echo "TESTING" > $file
The error I get is ./tester.sh: line 4: ~/Desktop/test.txt: ...
10
votes
3answers
2k views
How to split a huge folder?
We have a folder on Windows that's ... huge. I ran "dir > list.txt". The command lost response after 1.5 hours. The output file is about 200 MB. It shows there're at least 2.8 million files. I know ...
10
votes
2answers
271 views
why are end tags somtimes required and sometimes not?
very basic question, but i haven't found an answer for it...
why do some html opening/start tags require a closing/end tag?
for example, <script> requires a </script>, while <img> ...
10
votes
3answers
368 views
Uploadify in ie9 getting js error : SCRIPT5007: Object expected
I am trying to bind uploadify on div.
When I clicked on upload button it show me error like SCRIPT5007: Object expected.
For demo check below link which produced error on dragging of div in ie9
head
...
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 ...
9
votes
2answers
1k views
How to add Git's branch name to the commit message?
I need some help with a Bash script that will automatically add the Git's branch name as a hash in commit messages. Any ideas?
Thanks!
9
votes
3answers
21k views
How to call shell script from another shell scripts?
Please mention sample code to call or run another script function from different scripts. (Given the Bash shell.)
9
votes
2answers
382 views
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 ...
9
votes
2answers
3k views
bash alias with argument and autocompletion
I have a bunch of scripts in directory that exists on the path, so
I can access each wherever I am. Sometime those are very simple util scripts that
"vims" the file. From time to time I would like to ...
9
votes
1answer
1k views
How to get variable from text file into Bash variable
Simple question, in BASH I'm trying to read in a .pid file to kill a process. How do I read that file into a variable. All the examples I have found are trying to read in many lines. I only want to ...