1
vote
3answers
54 views
How do I make Perl scripts recognize parameters in the Win32 cmd console?
When I invoke my Perl scripts in the Windows environment without invoking perl first, the parameters are not passed to my script.
For example,
C:\> C:\my-perl-scripts\foo.pl b …
2
votes
3answers
29 views
Environment variable used in shell script appear blank in log file when run by cron
Forgive my ignorance, but I am somewhat new to shell scripting and the use of environment variables in Linux.
I have a script that performs a backup of a MySQL database. I have t …
3
votes
6answers
178 views
What is a scripting engine?
I've seen here that what sets a programming language apart from a scripting language is the scripting engine. But I don't understand how it works, so I don't know the difference.
…
2
votes
1answer
40 views
Is there a tool to diff/merge/sort localizable strings files?
Localizable strings file which are used for Apple/iPhone apps localization have the following format:
/* COMMENT */
"KEY" = "VALUE"
Note that KEY is unique in a given strings fil …
2
votes
8answers
65 views
How can I read a list of filenames from a file in bash?
I'm trying to write a bash script that will process a list of files whose names are stored one per line in an input file, something the likes of
find . -type f -mtime +15 > /tm …
1
vote
7answers
74 views
Reading java .properties file from bash
I am thinking of using sed for reading .properties file, but was wondering if there is a smarter way to do that from bash script?
0
votes
3answers
48 views
How to use Microsoft.Scripting.Hosting?
To embed some IronPython Code into C# I want to use the ScriptEngine
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
I found the reference for IronPython, but where …
3
votes
3answers
70 views
Console application prompting for input
I'm trying to put together a wrapper around a console application using StandardInput and StandardOutput. I'm getting stuck where the console application would prompt for input suc …
4
votes
4answers
225 views
+100
C# Interpreter (without compilation)
Hi,
Is there a ready-to-use C# interpreter out there, that is does not rely on runtime compilation?
My requirements are :
A scripting engine
Must Handle C# syntax
Must work on …
201
votes
129answers
21k views
How do you stop 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 e …
1
vote
6answers
83 views
Indenting Bash Script Output
Hello all,
I am attempting to write a bash script and I am having difficulty making the output look neat and organized. I could fall back on just using newlines, but I would much …
1
vote
3answers
110 views
How the Scala script that reads 5G log file from network drive should be modified in order to read last x lines (like ‘tail’ in Unix)?
How the Scala script that reads 5G log file from network drive should be modified in order to read last x lines (like 'tail' in Unix)?
::#!
@echo off
call scala %0 %*
goto :eof
:: …
0
votes
1answer
29 views
Pass list of variables to bash script
I need to be able to read list of variables that follow certain parameter(similar to say mysqldump --databases db1 db2 db3)
Basically script should be invoked like this:
./charge …
1
vote
6answers
152 views
What makes Python a good scripting language?
If you have to choose a scripting language, why would you choose Python?
0
votes
4answers
102 views
How do I fix this sed problem with unterminated lines?
I'm guessing this has to be an escaping issue, but I can't find it. What's most frustrating is that this is based on an old sed script I used that worked, so why can't I make it wo …
