|
From: <kon...@us...> - 2007-03-26 20:42:16
|
Revision: 3145
http://jnode.svn.sourceforge.net/jnode/?rev=3145&view=rev
Author: konkubinaten
Date: 2007-03-26 13:42:13 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
Fixed main method to create GrepCommand instead of GcCommand (issue 990)
Modified Paths:
--------------
trunk/shell/src/shell/org/jnode/shell/command/GrepCommand.java
Modified: trunk/shell/src/shell/org/jnode/shell/command/GrepCommand.java
===================================================================
--- trunk/shell/src/shell/org/jnode/shell/command/GrepCommand.java 2007-03-18 20:53:31 UTC (rev 3144)
+++ trunk/shell/src/shell/org/jnode/shell/command/GrepCommand.java 2007-03-26 20:42:13 UTC (rev 3145)
@@ -40,7 +40,7 @@
*/
public static void main(String[] args)
throws Exception {
- new GcCommand().execute(new CommandLine(args), System.in, System.out, System.err);
+ new GrepCommand().execute(new CommandLine(args), System.in, System.out, System.err);
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|