Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
598 views

conditional execution (&& and ||) in powershell

There's already question addressing my issue (http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell), but with one difference. I need an OUTPUT from both commands. See, if I just ...
1
vote
7answers
2k views

Is java Runtime.exec(String[]) platform independent?

I had some code that ran commands through Runtime.getRuntime.exec(String), and it worked on Windows. When I moved the code to Linux, it broke, and the only way of fixing it was to switch to the ...
0
votes
1answer
33 views

Executing an interactive CLI program remotely

I wrote a small client/server application that can execute system commands remotely. It works fine with non interactive programs when you only need to read their output. However, is there a reliable ...
0
votes
3answers
73 views

What are the differences between Java's java.lang.Runtime.exec() and PHP's exec()?

The following doesn't work in Java (an exception is thrown): Runtime.getRuntime().exec("cd mydir; myprog"); The same works fine in PHP: exec("cd mydir; myprog"); What exactly is different in ...
0
votes
1answer
319 views

How to execute a jar from pom.xml

I want to create a build info file into the specific location of the project's target folder (especially in target/abc_project/META-INF folder) through maven-2. Following is what I am doing in the ...
0
votes
2answers
138 views

Some commands hang my Ruby web app

I'm playing around with Rails & Sinatra, and I want to execute commands on the server. Those commands are entered from a form. The thing is, if I enter a command which expects input, my whole app ...