scripting

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 on a table in MS SMS, and tell it to script table as > Create to > new query window, it generates some very understandable code. However, I'm not sure why the...

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 script so that it can be provided to other team members? Thanks again for any feedback. ...

foreach no match -C shell script

I’m trying to write my first script to search for a given pattern in text file named test. Here is the script: #! /bin/csh echo -n "enter pattern: " set pattern = $< foreach word (`cat test`) echo $word | egrep $pattern end When I try to run it I get the message foreach: No match found. I suspect the problem is ca...

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 script looks like this: INSTANCE PC_Thief(NPC_DEFAULT) { //-------- primary data -------- name = "Diego"; Npctype = NPCTYPE_FRIEND; gui...

Resources to succesfully making applications scriptable

In the process of designing an application we've come to the conclusion that the user needs to be available to add custom behaviour to the program and we want to allow this through scripting, however, none of us got any experience embedding a scripting engine in an application and even less designing the application to succesfully allow ...

xcopy with unc path adds virtual network drives

Hello When i copy files to a some network path with xcopy command I get new virtual drives on my pc . The problem is that i do that within a batch script that runs in scheduler so i get there a lot of drives to same location. How I can copy files to a network with out getting a new drives on the pc or just remove them ? Thanks. ...

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++ variable). egrep '^[a-zA-Z][a-zA-Z0-9]*' This works fine for words such as "a", "ab10", but it also includes words like "b.b". I understand that * at the end ...

How do I move to a UNC location and enter its password via a script?

I want to move my current path to some network UNC password protected path. I need to do it via batch script. How do I move to that UNC location and enter its password via a script? I thought doing it like pushd \\my\path but how do I enter the username and password? ...

How do I access an MVC function via a cron job?

Hi, I'm using CodeIgniter (a PHP framework) to build an app, and I have an every-minute job to run with the program, 24 hours a day. I currently have it set up as: example.com/controller/runthis and that executes the job I want, but cron doesn't visit the URL as a user, it executes a script as far as I know. Do I just write a script ...

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-end management system that exposes content as full HTML pages. One of the pages, the officer list, uses inline script to load pictures or placeholders (dependi...

What makes Python a good scripting language?

If you have to choose a scripting language, why would you choose Python? ...

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 medium-trust environments Must not use runtime compilation (CodeDomProvider ...) Open source (or at least free of charge both for personal and professional us...

Script IIS 5.1 installation on Windows XP

I found an idea for scripting the installation of IIS7 on Vista I'm looking for a similar solution for IIS 5.1 on Windows XP. Any ideas? ...

tomcat startup script permission on mac os x

hello people i'm struggling with a mac os x 10.5.8 that i've started using recently for development.i successfully installed tomcat and create launchd.conf for my environment variables.i believe it works fine.coz i can build a project with netbeans using maven and cargo plugins succesfully so i found online a script for start and stop t...

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 work when I try to re-use it a year later? ;) Framework: I have a file with a list of filenames in it that all need the same string of HTML searched and repla...

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 EXISTS "$HOMEDIR"_shop;" Q4="GRANT ALL ON "$HOMEDIR"_shop TO '"$HOMEDIR"_shop'@'localhost' IDENTIFIED BY '$MYSQLPASS';" Q5="GRANT ALL ON "$HOMEDIR"_shop TO '"$HOMED...

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 looking for a script which will look into both folders and find the most recently modified .bkf file and copy it to another location. There are other files in...

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 ::!# import scala.io.Source if (args.length > 0) { for (line <-Source.fromFile(args(0)).getLines) if(line.contains("percent")){ print(line) } } ...

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 rather have output that was easy to read. For instance, when I run git clone ..., I want to first echo "Cloning repository" and then have the output of git ind...

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 utilize my id_rsa reliably when it is run as a cron job. the eval 'ssh-agent' is an attempt to do just that, but it doesn't seen to have any positive affect. #!/b...