The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
July 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

This is how you do it :)

Posted by Jakob Schoenberg on December 18, 2001 at 3:52 PM

> I want to run the command
> ls -l | grep x
> from within a Java program.

Because Runtime does not recognize |,
you have to send the command to a shell, like this:

Process p = Runtime.getRuntime().exec(new String[] {
"/bin/sh","-c", "ls -l | grep x "
});

Regards,
Jakob




Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us