Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
9answers
17k views

Adobe AIR to execute program

I would like to press a button from an Adobe AIR application and execute some installed program. For example, I would have a button named "Start Winamp". When this is pressed it should start ...
11
votes
3answers
4k views

Compiling/Executing a C# Source File in Command Prompt

Pardon my ignorance but how do you compile a .CS file from a command-prompt window? And how do you execute?
10
votes
3answers
2k views

Stored Procedure and Permissions - Is EXECUTE enough?

I have a SQL Server 2008 database where all access to the underlying tables is done through stored procedures. Some stored procedures simply SELECT records from the tables while others UPDATE, INSERT, ...
10
votes
6answers
9k views

What is the best way to call a python script from another python script?

I have a script named test1.py which is not in a module. It just has code that should execute when the script itself is run. There are no functions, classes, methods etc. I have another script which ...
8
votes
3answers
2k views

How do I use the Ant exec task to run piped commands?

I'm trying to run the following command using the 'exec' task in Ant: ls -l /foo/bar | wc -l Currently, I have my exec looking like this: <exec executable="ls" outputproperty="noOfFiles"> ...
8
votes
8answers
2k views

how to execute console application from windows form?

I want to run a console application (eg app.exe) from a windows form load event. I'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immidiately. Is there any way ...
8
votes
1answer
130 views

What is this JavaScript construct: “ = [y for each …]”

myColl.y = [y for each (y in myColl.y) if (y != myThing.getY())]; I understand what this is doing, returning all the 'y' items that are not the current one... But, what is the concept called here ...
8
votes
2answers
4k views

Want to invoke a linux shell command from Java

I am trying to exec some linux commands from Java code. Actualy the code that I use is useing redirection (>&) and pipe simbols (|). How my Java code should be to be able to invoke that command as ...
7
votes
2answers
1k views

Can you use an objects property in a string in powershell?

Basically I have the following code: $DatabaseSettings = @(); $NewDatabaseSetting = "" | select DatabaseName, DataFile, LogFile, LiveBackupPath; $NewDatabaseSetting.DatabaseName = "LiveEmployees_PD"; ...
7
votes
4answers
11k views

Setting the SVN “execute” bit in a Subversion repository using TortiseSVN or command line SVN

I've got an open-source app that is hosed at code.google.com. It is cross platform ( Linux / Windows / Mac ). I uploaded the code initially from a WinXP machine using TortiseSVN and it seems that none ...
6
votes
2answers
132 views

“Execute and Update '# =>' Markers” for VIM

Is there a possibility in VIM to repeat "Execute and Update '# =>' Markers" TextMate feature for ruby code. I'd like to have something like: x = 2 class A def a 42 end end x # => ...
6
votes
2answers
7k views

How to Execute a Python File in Notepad ++?

I prefer using notepad ++ for developing, How do I execute the files in Python through Notepad++?
5
votes
3answers
246 views

Run python script without the “python” keyword

How can I run a python script in Terminal on Mac without using the "python" keyword, without having to edit my existing python files? Right now I have to do this: python script.py What I like to do ...
5
votes
3answers
170 views

Start external executable from Java code with streams redirection

I need to start external executable in such way that user can interact with program that was just started. For example in OpenSuse Linux there is a package manager - Zypper. You can start zypper in ...
5
votes
1answer
200 views

execute several python scripts at same time causes php/apache to hang?

I'm trying to execute a few python scripts in order to manipulate som images on my website. The external program/tool is written in python and is called PHATCH. I'm under Windows and using WAMP as my ...
5
votes
5answers
1k views

Run a python script from another python script, passing in args

I want to run a python script from another python script. Where I pass in variables as I would at command line. So for example I would run my first script that would iterate thru a list of values ...
5
votes
1answer
2k views

“Executing an update/delete query” exception for @NamedQuery doing REMOVE

The following exception thrown for Spring Batch application: 19:12:40,083 ERROR main AbstractStep:213 - Encountered an error executing the step javax.persistence.TransactionRequiredException: ...
5
votes
3answers
478 views

Execute process conditionally in Windows PowerShell (e.g. the && and || operators in Bash)

I'm wondering if anybody knows of a way to conditionally execute a program depending on the exit success/failure of the previous program. Is there any way for me to execute a program2 immediately ...
5
votes
2answers
1k views

How to execute a process remotely using python

I want to connect too and execute a process on a remote server using python. I want to be able to get the return code and stderr(if any) of the process. Has anyone ever done anything like this ...
5
votes
5answers
1k views

How do I make multiple database queries more efficient in Perl?

I have a queries that reside in multiple methods each (query) of which can contain multiple paramaters. I am trying to reduce file size and linecount to make it more maintainable. Below is such an ...
5
votes
3answers
26k views

What does cmd /C mean?

I can understand cmd but not /c. I was trying to invoke a java program from the current for which I use Runtime.getRuntime().exec("cmd /C java helloworld") There arises my doubt.
4
votes
2answers
102 views

Running raw javascript (from plain text)

I'm trying to execute JavaScript from plain text (from being entered by a client). I also need a way to see if the executed code works or not (if it does, then it does, otherwise, it needs to spit ...
4
votes
5answers
315 views

Running a method when closing the program?

I need to execute a method, (a method which creates a file), when I exit my program, how would I do this, with an if statement?
4
votes
2answers
172 views

How to iterate a list of files and apply a command on each?

I have a folder with two files (a.exe and b.exe) in it and I need to run a command on each. For example xxx - a.exe a.bin. Is there a way to do this with Ant? I want ant to run: xxx - a.exe a.bin ...
4
votes
2answers
779 views

Python check if current process is running?

I need to add a function to my python script that checks if the current script is already running. If it is then it will quit, if not it continues running the script. I've looked into methods of doing ...
4
votes
2answers
917 views

How to get the resultant array from a Mongoid::Criteria without an “each” block

Our application uses ajax very heavily and as a result of this we have statements like var items = #{@items.to_json} in all our views. Now @items is being set in the controller as @items=Item.all. The ...
4
votes
3answers
948 views

Is it possible to execute binary files in java?

I have a list of binaries written in java, ada,C, python and I want to execute them. How to do that ? Is there any JVM binding to those languages ? Thanks for your answers
4
votes
2answers
216 views

ways to execute python

So far to execute a python program , I'm using > python file.py I want to run the python script simply using file name ,like > file.py similar to shell scripts like > sh file.sh > ...
4
votes
5answers
2k views

How to read/redirect output of a dos command to a program variable in C/C++?

I want to run a dos command from my program for example "dir" command. I am doing it like, system("dir"); Is there any way to read the output of that command directly into a program variable? We ...
3
votes
4answers
82 views

What is the role of the OS when JVM executes a Java application? And why do we need the OS?

I have done some reading on the internet and some people say that Java application is executed by the java virtual machine (JVM). The word "execute" confuses me a little bit. As I know, a non-Java ...
3
votes
2answers
67 views

exec in stored procedure will get the benefits of stored procedure

if i put something DECLARE @Query VARCHAR(8000) SET @Query = 'select * from subscriber where sbs_userid = ' + cast(@UserID as varchar) + ' and SBS_Status in (select ...
3
votes
4answers
184 views

R Code Taking Too Long To Run

I have the following code running and it's taking me a long time to run. How do I know if it's still doing its job or it got stuck somewhere. noise4<-NULL; for(i in 1:length(noise3)) { ...
3
votes
2answers
114 views

VBScript Execute Method Does Not Declare Variables

I was looking into dynamic "includes" methods and came down to a solution which uses VBScript's Execute function. This works perfectly for me but I noticed that Execute executes the code but this code ...
3
votes
4answers
144 views

Can't execute command from crontab?

I want to update some stuff in my database everyday at 16:00. So I use crontab which execute command which run my file.php which run the update. It works perfectly when I execute the command in the ...
3
votes
5answers
232 views

Is it possible to create/execute code in run-time in C#?

I know you can dynamically create a .NET assembly using Emit, System.Reflection and manually created IL code as shown here. But I was wondering is it possible to dynamically create and execute C# ...
3
votes
4answers
605 views

Ruby: execute shell command 'echo' with '-n' option

I'd like to run the following shell command from Ruby, which copies a string into the clipboard (on OS X), 'n' is suppressing the line break after the string caused by echo: echo -n foobar | pbcopy ...
3
votes
5answers
520 views

Window form execute a batch file

I am new to C# programming. I would like to have an application contains 1 text box and 1 submit button to exec a batch file. The file is d:\XMLupdate.bat, but the program appends a number on the ...
3
votes
3answers
106 views

call sql from a user defined function

Is it possible with SQL Server 2008 to execute sql from a variabele in a user defined function? Or is using a stored procedure the only solution? I have an sql statement saved in a variabele ...
3
votes
4answers
3k views

C# execute action after X seconds

I want to develop a windows console application which executes an action periodically after a given time. I've read somewhere that a timer class is only available for windows forms applications, so ...
3
votes
2answers
2k views

How do I execute a function from RAM on a Cortex-M3 (STM32)?

I'm trying to execute a function from RAM on a Cortex-M3 processor (STM32). The function erases the and rewrites the internal flash, so i definitely needs to be in RAM but how do I do that? What I ...
3
votes
4answers
818 views

How do I execute a cmd in C#, then in the same window execute another command that follows?

Right what im trying to accomplish is a program that basically sets the active partition in 1 click, saving the effort time and skill of using cmd prompt etc. I have looked into the System.Management ...
3
votes
2answers
749 views

C#- Executing Exe without using System.Diagnostics.Process.Start

I have a program that crashes when I execute it with System.Diagnostics.Process.Start in C#, but works fine if I execute a shortcut or batch file that runs the exe. Are there any alternative means of ...
3
votes
3answers
4k views

Interpret and execute arbitrary Javascript in Linux CLI

I've been looking for ways to do this for a while but haven't quite been able to find the right way to do it. The task: Execute Javascript from a Linux command line. For example, have the binary or ...
3
votes
4answers
3k views

Cygwin - run script silenty from “run command”

I have script lets say: C:\foo.bsh I want to be able to run this command via the windows run command: Start -> Run Windows Key + R and type something small like 'foo' and hitting return. ...
2
votes
1answer
79 views

How to launch a file in the foreground?

Launch a file = launch program associated with given file and automatically open that file on start of the program. Let's say I run IntelliJ IDEA, I run my code and main window (modal) of my program ...
2
votes
3answers
66 views

JavaScript function execution in object

I want to add a function to some object (in a form of a variable) and execute it when i need too. How to do this? Thanks.
2
votes
1answer
190 views

Executing Unix Sun Solaris Commands Using ORACLE PL/SQL trouble with permissions

I have created 2 procedure and a java source One procedure is calling java class TestHostCommand PROCEDURE TEST2 (p_command IN Varchar2) AS LANGUAGE JAVA NAME ...
2
votes
4answers
271 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
2answers
1k views

Jenkins CI On Windows - PHP Tools Not Executed At Build

I recently installed Jenkins on my local Windows 7 dev environment. I configured Jenkins for my local Java and Ant installations and I set up my first project. I used instruction from ...
2
votes
1answer
421 views

Executing JAR file within a other java application

I'm trying to run a External Jar file, without actually instert it into my jar itself. Because the jar file needs to be located in the same folder as the main jar file. So, Within the main jar file I ...

1 2 3 4 5 6