0
votes
3answers
27 views
Programmatically generate script for all objects in a database
For an automated setup build that generates the setup for an application which uses Microsoft SQL Server, I am currently evaluating whether the following is possible:
I want to pr …
1
vote
1answer
23 views
How to set mutiple words variable from command line input in C shell
I'm writing a script to search for a pattern in file. For example
scriptname pattern file1 file2 filenN
I use for loop to loop through arguments argv, and it does the job if all …
0
votes
3answers
21 views
How to egrep variable-Unix shell script
I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):
echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
echo "Inva …
0
votes
3answers
36 views
JavaScript to Submit Page After 30 Seconds
I am looking for a JavaScript to submit a page after 30 seconds from when the page is loaded. Does jQuery offer this functionality or does someone have regular javascript for this …
1
vote
5answers
76 views
Bash Script to find the most recently modified file
Hi,
I have two folders, for arguments sake /Volumes/A and /Volumes/B. They are mounted network shares from a Windows server containing a load of .bkf files from Backup Exec.
I am …
1
vote
2answers
40 views
Accessing SSH key from bash script running via a cron job
I've put this script together to updated a folder of forked Github repositories on a daily basis. It runs fine if I call it from a prompt, but I can' figure out how to make it util …
0
votes
1answer
35 views
Cygwin Shell Scripts
I'm not running cygwin, but I have the cygwin ash.exe in my %PATH% as sh.exe and have cygwin1.dll in %PATH%
I am trying to invoke some shell scripts (named with no extension) usin …
1
vote
2answers
31 views
mysql create database and user script
Question Rewritten:
HOMEDIR="ftpuser"
REMOTEIP="1.1.1.1"
MYSQLPASS="password"
Q1="DROP USER "$HOMEDIR"_shop;"
Q2="DROP DATABASE "$HOMEDIR"_shop;"
Q3="CREATE DATABASE IF NOT EXIST …
1
vote
3answers
92 views
Loading HTML content containing inline script via jQuery
The Background
I run an ASP.NET site using Graffiti CMS for a local charitable/service organization.
The leaders of the organization want to start integrating a third-party back- …
0
votes
1answer
23 views
Is “XML SCRIPT” alive yet?
I heard about in ASP.NET AJAX in Action book.
1
vote
2answers
63 views
Regex: parsing scripts in c#
hello, I'm currently writing a script editing app in c# to edit game scripts. I want to be able to load a script file and get the name of an NPC object and the script contents. The …
1
vote
4answers
99 views
Regular expression Unix shell script
I need to filter all lines with words starting with a letter followed by zero or more letters or numbers, but no special characters (basically names which could be used for c++ var …
2
votes
2answers
56 views
How do I deliver an Excel 2007 VBA script?
Once I've finished writing an Excel 2007 VBA script how to I deliver the Excel 2007 VBA script to the rest of the team members?
Is there a way to package an Excel 2007 VBA scrip …
0
votes
1answer
27 views
Sql Server Management Studio - Programatically Creating Scipts based on DAL; Why use SET ANSI_NULLS ON before each table
I'm looking to generate the SQL scripts for table creation programmatically based on class definitions in my DAL similar to SQL Server Management Studio.
So, when I right click …
0
votes
3answers
58 views
linux shell date question
shell>/bin/date -d "091029 20:18:02" +%s
1256827682
Similarly I created shell script:
#My.sh
myDate=`date +'%y%m%d_%H%M%S'`
myDate1=`echo $myDate | sed 's/_/ /g'`
myDate2=`ec …
