From: <chr...@us...> - 2009-04-30 04:12:28
|
Revision: 5369 http://jnode.svn.sourceforge.net/jnode/?rev=5369&view=rev Author: chrisboertien Date: 2009-04-30 04:12:27 +0000 (Thu, 30 Apr 2009) Log Message: ----------- New openReader methods for IOUtils and some cat updates Signed-off-by: chrisboertien <chr...@gm...> Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java Modified: trunk/cli/src/commands/org/jnode/command/file/CatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2009-04-30 03:13:37 UTC (rev 5368) +++ trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2009-04-30 04:12:27 UTC (rev 5369) @@ -41,7 +41,7 @@ /** * Read files or network resources and write the concatenation to standard output. If * no filenames or URIs are provided, copy standard input to standard output. Data is - * copied byte-wise. + * copied byte-wise unless flags are used that add additional formatting to the lines. * <p> * If any file or URL cannot be opened, it is skipped and we (eventually) set a non-zero * return code. If we get an IOException reading or writing data, we allow it to propagate. @@ -50,6 +50,7 @@ * @author Andreas H\u00e4nel * @author cr...@jn... * @author Fabien DUMINY (fd...@jn...) + * @author chris boertien */ public class CatCommand extends AbstractCommand { @@ -81,6 +82,7 @@ private File[] files; private String end; private int rc = 0; + private int lineCount; private boolean squeeze; private boolean numAll; private boolean numNB; @@ -190,7 +192,6 @@ private void processReader(BufferedReader reader) throws IOException { String line; boolean haveBlank = false; - int lineCount = 0; while ((line = reader.readLine()) != null) { if (line.length() == 0) { @@ -217,8 +218,8 @@ * Attempt to open a file, writing an error message on failure. If the file * is '-', return stdin. * - * @param fname the filename of the file to be opened - * @return An open stream, or <code>null</code>. + * @param file the file to open the stream on + * @return the reader, or null */ private InputStream openFileStream(File file) { InputStream ret = null; @@ -235,15 +236,21 @@ return ret; } + /** + * Attempt to open a file reader, writing an error message on failure. If the file + * is '-', return stdin. + * + * @param file the file to open the reader on + * @return the reader, or null + */ private BufferedReader openFileReader(File file) { BufferedReader ret = null; if (file.getName().equals("-")) { ret = new BufferedReader(in, BUFFER_SIZE); } else { - try { - ret = new BufferedReader(new FileReader(file), BUFFER_SIZE); - } catch (FileNotFoundException e) { + ret = IOUtils.openBufferedReader(file, BUFFER_SIZE); + if (ret == null) { err.format(err_file, file); } } Modified: trunk/cli/src/commands/org/jnode/command/util/IOUtils.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-04-30 03:13:37 UTC (rev 5368) +++ trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-04-30 04:12:27 UTC (rev 5369) @@ -27,8 +27,10 @@ import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; +import java.io.FileReader; import java.io.Flushable; import java.io.InputStream; +import java.io.LineNumberReader; import java.io.IOException; import java.io.OutputStream; import java.io.PrintWriter; @@ -218,6 +220,66 @@ } /** + * Opens a Reader on a file. + * + * This method will not throw a FileNotFoundException like the FileReader + * constructor would. + * + * @param file the file to open the reader on + * @return the reader, or null if the file could not be opened + * @throws NullPointerException if file is null + */ + public static Reader openReader(File file) { + checkNull(file); + + try { + return new FileReader(file); + } catch (FileNotFoundException e) { + // fall through + } + + return null; + } + + /** + * Opens a BufferedReader on a file. + * + * This method will not throw a FileNotFoundException like the FileReader + * constructor would. + * + * @param file the file to open the reader on + * @param bufferSize the buffer size to use for this reader + * @return the reader, or null if the file could not be opened + * @throws NullPointerException if file is null + */ + public static BufferedReader openBufferedReader(File file, int bufferSize) { + Reader reader = openReader(file); + if (reader != null) { + return new BufferedReader(reader, bufferSize); + } + return null; + } + + /** + * Opens a LineNumberReader on a file. + * + * This method will not throw a FileNotFoundException like the FileReader + * constructor would. + * + * @param file the file to open the reader on + * @param bufferSize the buffer size to use for this reader + * @return the reader, or null if the file could not be opened + * @throws NullPointerException if file is null + */ + public static LineNumberReader openLineReader(File file, int bufferSize) { + Reader reader = openReader(file); + if (reader != null) { + return new LineNumberReader(reader, bufferSize); + } + return null; + } + + /** * Opens an OutputStream on a file for writing. * * If the file exists and has content, it will be overwritten. That is to say the append This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-05-02 02:04:11
|
Revision: 5382 http://jnode.svn.sourceforge.net/jnode/?rev=5382&view=rev Author: chrisboertien Date: 2009-05-02 01:44:40 +0000 (Sat, 02 May 2009) Log Message: ----------- Checkstyle fixes Signed-off-by: chrisboertien <chr...@gm...> Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java trunk/cli/src/commands/org/jnode/command/file/CatCommand.java trunk/cli/src/commands/org/jnode/command/file/DuCommand.java trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java trunk/cli/src/commands/org/jnode/command/file/WcCommand.java trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java Modified: trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -29,7 +29,6 @@ import java.io.PrintWriter; import java.io.Reader; import java.io.IOException; -import java.util.ArrayList; import org.apache.tools.zip.ZipFile; import org.jnode.shell.AbstractCommand; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -32,9 +32,9 @@ */ public class BasenameCommand extends AbstractCommand { - private static final String help_name = "Strip this fileargName of its directory and optionally argSuffix components."; - private static final String help_suffix = "Strip this argSuffix from the fileargName"; - private static final String help_super = "Strip directory and argSuffix from filesargNames"; + private static final String help_name = "Strip this file name of its directory and optionally suffix components."; + private static final String help_suffix = "Strip this suffix from the file name"; + private static final String help_super = "Strip directory and suffix from files names"; private final StringArgument argName; private final StringArgument argSuffix; Modified: trunk/cli/src/commands/org/jnode/command/file/CatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -22,8 +22,6 @@ import java.io.BufferedReader; import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; Modified: trunk/cli/src/commands/org/jnode/command/file/DuCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -101,7 +101,7 @@ protected void lastAction(boolean wasCancelled) { Map<File, Long> summarisedMap = summariseIt(map); for (Entry<File, Long> e : summarisedMap.entrySet()) { - if(humanReadable) + if (humanReadable) out.println(NumberUtils.toBinaryByte(e.getValue()) + "\t" + e.getKey()); else out.println(e.getValue() + "\t" + e.getKey()); @@ -120,7 +120,7 @@ Map<File, Long> summarisedMap = summariseIt(map); for (Entry<File, Long> e : summarisedMap.entrySet()) { if (e.getKey().isDirectory()) { - if(humanReadable) + if (humanReadable) out.println(NumberUtils.toBinaryByte(e.getValue()) + "\t" + e.getKey()); else out.println(e.getValue() + "\t" + e.getKey()); @@ -139,7 +139,7 @@ protected void lastAction(boolean wasCancelled) { TreeMap<File, Long> summarisedMap = summariseIt(map); Entry<File, Long> e = summarisedMap.firstEntry(); - if(humanReadable) + if (humanReadable) out.println(NumberUtils.toBinaryByte(e.getValue()) + "\t" + e.getKey()); else out.println(e.getValue() + "\t" + e.getKey()); @@ -167,7 +167,7 @@ allArg = new FlagArgument("all", Argument.OPTIONAL, HELP_ALL); dirArg = new FileArgument("directory", Argument.OPTIONAL | Argument.MULTIPLE, HELP_DIR); humanReadableArg = new FlagArgument("human-readable", Argument.OPTIONAL, HELP_HUMAN_READABLE); - registerArguments(totalArg, allArg, humanReadableArg, dirArg ); + registerArguments(totalArg, allArg, humanReadableArg, dirArg); } public static void main(String[] args) throws IOException { Modified: trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -78,9 +78,9 @@ public Md5SumCommand() { super(help_super); - argPaths = new FileArgument("paths", Argument.OPTIONAL | Argument.MULTIPLE | Argument.EXISTING, help_paths); + argPaths = new FileArgument("paths", Argument.MULTIPLE | Argument.EXISTING, help_paths); flagRecursive = new FlagArgument("recursive", Argument.OPTIONAL, help_recurse); - argCheckfile = new FileArgument("checkfile", Argument.OPTIONAL | Argument.SINGLE | Argument.EXISTING, help_check); + argCheckfile = new FileArgument("checkfile", Argument.SINGLE | Argument.EXISTING, help_check); registerArguments(argPaths, flagRecursive, argCheckfile); } Modified: trunk/cli/src/commands/org/jnode/command/file/WcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -31,7 +31,6 @@ import org.jnode.shell.AbstractCommand; import org.jnode.shell.syntax.Argument; -import org.jnode.shell.syntax.CommandSyntaxException; import org.jnode.shell.syntax.FileArgument; import org.jnode.shell.syntax.FlagArgument; Modified: trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -52,8 +52,8 @@ private static final String help_subnet = "the IPv4 subnet mask for the device"; private static final String help_super = "List or manage network interface bindings"; private static final String fmt_devices = "%s: MAC-Address %s MTU %s%n %s%n"; - private static final String fmt_ip = "IP address(es) for %s %s"; - private static final String fmt_set_ip = "IP Address for %s set to %s"; + private static final String fmt_ip = "IP address(es) for %s %s%n"; + private static final String fmt_set_ip = "IP Address for %s set to %s%n"; private final DeviceArgument argDevice; private final IPv4AddressArgument argIPAddress; Modified: trunk/cli/src/commands/org/jnode/command/util/IOUtils.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-05-01 21:45:43 UTC (rev 5381) +++ trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-05-02 01:44:40 UTC (rev 5382) @@ -471,7 +471,7 @@ * Check for null objects in a list of objects. */ private static void checkNull(Object... objs) { - for(Object obj : objs) { + for (Object obj : objs) { if (obj == null) throw new NullPointerException(ex_null_param); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-05-03 04:17:55
|
Revision: 5385 http://jnode.svn.sourceforge.net/jnode/?rev=5385&view=rev Author: chrisboertien Date: 2009-05-03 04:17:51 +0000 (Sun, 03 May 2009) Log Message: ----------- Updates to command utilities and grep ADW - protected access to the filter mechansim - new optional callback for special files - directory filters to prevent recursing whole directory branches - directories beyond max level are no longer recursed - bunch of new javadoc IOUtils - methods to read all the lines of a file into a List GrepCommand - reworked to use ADW Signed-off-by: chrisboertien <chr...@gm...> Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java Modified: trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2009-05-02 11:03:59 UTC (rev 5384) +++ trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2009-05-03 04:17:51 UTC (rev 5385) @@ -20,8 +20,9 @@ package org.jnode.command.file; +import java.io.BufferedReader; import java.io.File; -import java.io.FileReader; +import java.io.FileFilter; import java.io.InputStream; import java.io.IOException; import java.io.LineNumberReader; @@ -33,12 +34,13 @@ import java.util.regex.MatchResult; import java.util.regex.Pattern; import java.util.regex.PatternSyntaxException; - -import java.util.ArrayDeque; import java.util.ArrayList; -import java.util.Deque; import java.util.List; +import org.apache.log4j.Logger; +import org.jnode.command.util.AbstractDirectoryWalker; +import org.jnode.command.util.AbstractDirectoryWalker.PathnamePatternFilter; +import org.jnode.command.util.IOUtils; import org.jnode.shell.AbstractCommand; import org.jnode.shell.syntax.Argument; import org.jnode.shell.syntax.FileArgument; @@ -57,7 +59,9 @@ */ public class GrepCommand extends AbstractCommand { + private static final Logger log = Logger.getLogger(GrepCommand.class); private static final boolean DEBUG = false; + private static final int BUFFER_SIZE = 8192; private static final String help_matcher_fixed = "Patterns are fixed strings, seperated by new lines. Any of " + "which is to be matched."; @@ -151,6 +155,7 @@ private static final String help_pattern_files = "File with patterns to match, one per line."; private static final String help_files = "The files to match against. If there are no files, or if any file is " + "'-' then match stdandard input."; + private static final String err_ex_walker = "Exception while walking."; private final StringArgument Patterns; private final FileArgument PatternFiles; @@ -215,8 +220,6 @@ private static final int PREFIX_FB = PREFIX_FILE | PREFIX_BYTE; private static final int PREFIX_LB = PREFIX_LINE | PREFIX_BYTE; - private static final Pattern multiGlob = Pattern.compile("[*]"); - private PrintWriter err; private PrintWriter out; private Reader in; @@ -309,7 +312,8 @@ FileArgument("files", Argument.MULTIPLE | Argument.EXISTING | FileArgument.HYPHEN_IS_SPECIAL, help_files); registerArguments(Patterns, PatternFiles, Files, NullTerm); - match = multiGlob.matcher(" "); + // Default matcher + match = Pattern.compile(".*").matcher(""); } /** @@ -344,10 +348,10 @@ name = file.getPath(); try { if (name.equals("-")) { - reader = new LineNumberReader(in); + reader = new LineNumberReader(in, BUFFER_SIZE); name = prefixLabel; } else { - reader = new LineNumberReader(new FileReader(file)); + reader = IOUtils.openLineReader(file, BUFFER_SIZE); } if (exitOnFirstMatch) { debug(" exitOnFirstMatch"); @@ -382,13 +386,7 @@ error("IOException greping file : " + file); e.printStackTrace(); } finally { - if (reader != null) { - try { - reader.close(); - } catch (IOException _) { - // ignore - } - } + IOUtils.close(reader); } } } catch (Exception e) { @@ -487,7 +485,6 @@ * Outputs a matched string, in the given file, at the given line and the given byte offset. Outputs * to stdout the match string, along with any set prefix options. */ - // TODO PREFIX_TAB private void printMatch(String line, String name, int lineCount, int byteCount) { String sLine; String sByte; @@ -623,19 +620,6 @@ return Pattern.compile(sb.toString(), flags); } - private Pattern glob2Pattern(String glob) { - debug("glob-1 > " + glob); - String s = glob; - glob = multiGlob.matcher(glob).replaceAll(".*"); - glob = glob.replace('?', '.'); - debug("glob-2 > " + glob); - try { - return Pattern.compile(glob); - } catch (PatternSyntaxException e) { - throw new InternalError("Invalid glob pattern {" + s + "," + glob + "}"); - } - } - /*********************************************************/ /************** Command Line Parsing *********************/ /*********************************************************/ @@ -720,12 +704,12 @@ } if ((prefix & (PREFIX_FILE | PREFIX_NOFILE)) == (PREFIX_FILE | PREFIX_NOFILE)) { - throw new InternalError("PREFIX_NOFILE && PREFIX_FILE"); + throw new AssertionError("PREFIX_NOFILE && PREFIX_FILE"); } } private void parsePatterns() { - LineNumberReader reader; + BufferedReader reader; String line; patterns = new ArrayList<Pattern>(); @@ -734,154 +718,133 @@ patterns.add(rewritePattern(s)); } catch (PatternSyntaxException e) { error("Invalid Pattern : " + s); + exit(2); } } for (File file : PatternFiles.getValues()) { reader = null; try { - reader = new LineNumberReader(new FileReader(file)); + reader = IOUtils.openBufferedReader(file, BUFFER_SIZE); while ((line = reader.readLine()) != null) { try { patterns.add(rewritePattern(line)); } catch (PatternSyntaxException e) { error("Invalid Pattern : " + line); + exit(2); } } } catch (IOException e) { debug("IOException while parsing pattern file : " + file); + error("Error reading file: " + file); + exit(2); } finally { - if (reader != null) { - try { - reader.close(); - } catch (IOException _) { - // ignore - } - } + IOUtils.close(reader); } } } + private class Walker extends AbstractDirectoryWalker { + @Override + public void handleFile(File file) { + files.add(file); + } + @Override + public void handleDir(File dir) { + // no-op + } + @Override + public void handleRestrictedFile(File file) { + // no-op + } + + private void doFile(File file) { + if (notFiltered(file)) { + files.add(file); + } + } + } + private void parseFiles() { String line; String name; - LineNumberReader reader; + BufferedReader reader; files = new ArrayList<File>(); + if (!Files.isSet()) { files.add(new File("-")); return; } - List<Pattern> excludes = new ArrayList<Pattern>(); - List<Pattern> includes = new ArrayList<Pattern>(); - List<String> excludeDirs = new ArrayList<String>(); + Walker walker = new Walker(); + for (String s : Include.getValues()) { - includes.add(glob2Pattern(s)); + walker.addFilter(new PathnamePatternFilter(s, false)); } - for (String s : ExcludeDir.getValues()) { - excludeDirs.add(s); - } - for (String s : Exclude.getValues()) { - excludes.add(glob2Pattern(s)); + walker.addFilter(new PathnamePatternFilter(s, true)); } for (File file : ExcludeFile.getValues()) { - reader = null; + reader = IOUtils.openBufferedReader(file, BUFFER_SIZE); + List<String> lines = null; try { - reader = new LineNumberReader(new FileReader(file)); - while ((line = reader.readLine()) != null) { - excludes.add(glob2Pattern(line)); - } - } catch (IOException _) { - debug("IOException while parsing exclude file: " + file); + lines = IOUtils.readLines(reader); } finally { - try { - if (reader != null) { - reader.close(); - } - } catch (IOException _) { - // ignore + IOUtils.close(reader); + } + if (lines != null) { + for (String s : lines) { + walker.addFilter(new PathnamePatternFilter(s, true)); } } } - Deque<File> stack = new ArrayDeque<File>(); + List<String> excludeDirs = new ArrayList<String>(); + + for (final String s : ExcludeDir.getValues()) { + walker.addDirectoryFilter(new FileFilter() { + @Override + public boolean accept(File file) { + return !(file.isDirectory() && file.getName().equals(s)); + } + }); + } + + List<File> dirs = new ArrayList<File>(); + for (File file : Files.getValues()) { - name = file.getName(); - if (name.equals("-")) { - files.add(file); - continue; - } if (file.isDirectory()) { - if (!excludeDir(name, excludeDirs) && recurse) { - stack.push(file); + if (recurse) { + dirs.add(file); } - } else if (includeFile(name, includes) && !excludeFile(name, excludes)) { - files.add(file); + } else if (file.isFile()) { + walker.doFile(file); + } else { + // skip special files } } - while (stack.size() > 0) { - File dir = stack.pop(); - if (!dir.isDirectory()) { - err.println("Stack has non-directory: " + dir); - continue; + try { + if (dirs.size() > 0) { + walker.walk(dirs); } - for (File file : dir.listFiles()) { - name = file.getName(); - if (file.isDirectory()) { - if (!excludeDir(name, excludeDirs)) { - stack.push(file); - } - } else if (includeFile(name, includes) && !excludeFile(name, excludes)) { - files.add(file); - } - } - } - } - - private boolean excludeFile(String name, List<Pattern> excludes) { - if (excludes.size() == 0) return false; - for (Pattern exclude : excludes) { - if (exclude.matcher(name).matches()) { - debug("Exclude: " + name); - return true; - } + } catch (IOException e) { + // technically, the walker shouldn't let this propogate unless something + // is really wrong. + error(err_ex_walker); + exit(2); } - return false; } - private boolean excludeDir(String name, List<String> excludeDirs) { - if (excludeDirs.size() == 0) return false; - for (String exclude : excludeDirs) { - if (name.equals(exclude)) { - debug("ExcludeDir: " + name); - return true; - } - } - return false; - } - - private boolean includeFile(String name, List<Pattern> includes) { - if (includes.size() == 0) return true; - for (Pattern include : includes) { - if (include.matcher(name).matches()) { - debug("Include: " + name); - return true; - } - } - return false; - } - private void error(String s) { if (!suppress) err.println(s); } private void debug(String s) { - if (debug) err.println(s); + if (debug) log.debug(s); } private void debugOptions() { Modified: trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java 2009-05-02 11:03:59 UTC (rev 5384) +++ trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java 2009-05-03 04:17:51 UTC (rev 5385) @@ -45,11 +45,11 @@ * DirectoryWalker. * * @author Alexander Kerner - * + * @author chris boertien */ public abstract class AbstractDirectoryWalker { - private class FileObject { + private static class FileObject { final File file; final Long depth; @@ -59,83 +59,150 @@ } } + /** + * A FileFilter that filters based on matching a pathname glob pattern + */ public static class PathnamePatternFilter implements FileFilter { private Matcher matcher; private boolean exclude; + /** + * Create the filter with the given pattern and orientation + * + * @param pattern the pathname glob pattern to match with + * @param exclude if true, reverse the sense of matching and + * exclude files that match. + */ public PathnamePatternFilter(String pattern, boolean exclude) { this.exclude = exclude; this.matcher = PathnamePattern.compilePosixShellPattern(pattern, 0).matcher(""); } + @Override public boolean accept(File file) { return matcher.reset(file.getName()).matches() ^ exclude; } } + /** + * A FileFilter that filters based on matching a regular expression. + */ public static class RegexPatternFilter implements FileFilter { private Matcher matcher; private boolean exclude; + /** + * Create the filter with the given pattern and orientation + * + * @param pattern the regular expression to match with + * @param exclude, if true, reverse the sense of matching and + * exclude files that match the pattern. + */ public RegexPatternFilter(String pattern, boolean exclude) { this.exclude = exclude; this.matcher = Pattern.compile(pattern).matcher(""); } + @Override public boolean accept(File file) { return matcher.reset(file.getName()).matches() ^ exclude; } } + /** + * A FileFilter that filters based on the file modification time. + */ public static class ModTimeFilter implements FileFilter { private long modTime; private boolean newer; + /** + * Create the filter with the given mod time and direction + * + * @param size the time point to filter on + * @param newer if true, accept if the file mtime is > time, false + * accepts if the file mtime is <= to time. + */ public ModTimeFilter(long time, boolean newer) { this.modTime = time; this.newer = newer; } + @Override public boolean accept(File file) { return file.lastModified() == modTime || ((file.lastModified() < modTime) ^ newer); } } + /** + * A FileFilter that filters based on the file size. + */ public static class SizeFilter implements FileFilter { private long size; private boolean greater; + /** + * Create the filter with the given size and direction. + * + * @param size the size point to filter on + * @param greater if true, accept if the file length is > size, false + * accepts if the file length is <= to size. + */ public SizeFilter(long size, boolean greater) { this.size = size; this.greater = greater; } + @Override public boolean accept(File file) { - return file.length() == size || ((file.length() < size) ^ greater); + return file.length() == size || ((file.length() <= size) ^ greater); } } private final Stack<FileObject> stack = new Stack<FileObject>(); private final Set<FileFilter> filters = new HashSet<FileFilter>(); - private volatile boolean cancelled = false; + private final Set<FileFilter> dirFilters = new HashSet<FileFilter>(); private volatile Long maxDepth = null; private volatile Long minDepth = null; + private volatile boolean cancelled = false; /** - * Main method to walk through directory hierarchy. + * Walk the directory heirarchies of the given directories. + * + * Before walking begins on each of the given directories, the + * extending class has a chance to do some initialization through + * {@code handleStartingDir}. Once walking has commenced, each file + * will be checked against the current set of constraints, and + * passed to the extending class for further processing if accepted. + * When walking is complete for that branch, the {@code lastAction} + * method is called, and the walker moves on to the next directory, + * or returns if there are no more directories to walk. + * + * If an IOException propogates beyond the {@code walk} method, there + * is currently no way to resume walking. The following reasons may + * cause this to happen. + * <ul> + * <li>Any of the supplied directories are null, or not a directory. + * <li>A SecurityException was triggered, and the caller has not overriden + * the {@code handleRestrictedDir} method. + * </ul> * * @param dirs Array of <code>File</code> to walk through. * @throws IOException if any IO error occurs. + * @throws NullPointerException if dirs is null, or contains no directories */ public synchronized void walk(final File... dirs) throws IOException { if (dirs == null || dirs.length == 0) { throw new NullPointerException("Directory to walk from must not be null"); } for (File dir : dirs) { + // perhaps this shouldn't fail like this, as it may + // be possible that this was simply due to a race condition + // with another process that has deleted the directory already if (dir == null || !dir.isDirectory()) throw new IOException("No such directory " + dir); @@ -148,6 +215,8 @@ handle(stack.pop()); } lastAction(cancelled); + // if this was cancelled, we need to clear the stack + stack.clear(); } } @@ -156,22 +225,27 @@ } private void handle(final FileObject file) throws IOException { - if ((minDepth != null && file.depth < minDepth) || - (maxDepth != null && file.depth > maxDepth)) { + if (minDepth != null && file.depth < minDepth) { // out of boundaries - } else if (notFiltered(file)) { + } else if (notFiltered(file.file)) { handleFileOrDir(file); } else { // filtered out } try { - handleChilds(file); + // Don't descend into directories beyond maxDepth + if (file.file.isDirectory() && (maxDepth == null || file.depth < maxDepth) && dirNotFiltered(file.file)) { + handleChilds(file); + } } catch (SecurityException e) { // Exception rises, when access to folder content was denied handleRestrictedFile(file.file); } } - + + /** + * Add a directories contents to the stack. + */ private void handleChilds(final FileObject file) throws IOException, SecurityException { final Stack<File> stack = new Stack<File>(); final File[] content = file.file.listFiles(); @@ -200,62 +274,142 @@ } } - + + /** + * Trigger the callbacks + */ private void handleFileOrDir(final FileObject file) throws IOException { if (file.file.isDirectory()) handleDir(file.file); else if (file.file.isFile()) handleFile(file.file); else { - // ignore unknown file type + handleSpecialFile(file.file); } } - - private boolean notFiltered(final FileObject file) { + + /** + * Process a file through a set of file filters. + * + * This may be called from extending classes in order to bypass + * the regaular walking procedure. + * + * As an example, if the caller simply wants to process specific + * files through the filter set, without setting up a full directory + * walk. + * + * @param file the file to check + * @return true if the file was accepted by all the filters, or if there + * were not filters. + */ + protected final boolean notFiltered(final File file) { if (!filters.isEmpty()) for (FileFilter filter : filters) - if (!filter.accept(file.file)) + if (!filter.accept(file)) return false; return true; } + + /** + * Stop recursing if this is false. + */ + private boolean dirNotFiltered(File file) { + if (!dirFilters.isEmpty()) { + for (FileFilter filter : dirFilters) { + if (!filter.accept(file)) { + return false; + } + } + } + return true; + } /** - * Abort walking. + * Stop walking the current directory heirarchy. + * + * This will not stop the walker altogether if there were multiple directories + * passed to {@code walk}. Instead, walking of the current directory heirarchy + * will stop, {@code lastAction(true)} is called, and the walker is reset with + * the next directory. If this it was the last directory, or there was only one + * then walk will return without error. */ public void stopWalking() { cancelled = true; } /** + * The minimum depth level (exclusive) at which to begin handling files. + * + * The initial directory has a depth level of 0. Therefore if you set the + * minimum depth to 0, the initial directory will not handled, but its + * contents will. + * + * A negative value will be seen as null. * * @param min starting depth at which actual action performing is started. */ public void setMinDepth(Long min) { - minDepth = min; + if (min >= 0) { + minDepth = min; + } } /** - * + * The maximum depth level (inclusive) at which to stop handling files. + * + * When the walker reaches this level, it will not recurse any deeper + * into the file heirarchy. If the maximjm depth is 0, the initial directory + * will be handled, but the walker will not query for its contents. + * + * A negative value will be seen as null. + * * @param max ending depth at which actual action performing is stopped. */ public void setMaxDepth(Long max) { - maxDepth = max; + if (max >= 0) { + maxDepth = max; + } } /** - * + * Add a FileFilter to this walker. + * + * Before the extended class is asked to handle a file or directory, it + * must be accepted by the set of filters supplied. If no filters are + * supplied, then every file and directory will be handled. + * * @param filter <code>FileFilter</code> to be added to this * DirectoryWalkers FilterSet. */ public synchronized void addFilter(FileFilter filter) { filters.add(filter); } - + /** + * Add a FileFilter to stop recursing of directories. + * + * Before recursing a directory, it must be accepted by the set of + * directory filters supplied. If no filters are supplied, then this + * will not prevent recursing of directories. + * + * @param filter <code>FileFilter</code> to be added + */ + public synchronized void addDirectoryFilter(FileFilter filter) { + dirFilters.add(filter); + } + + /** + * Handle a file or directory that triggered a SecurityException. + * * This method is called, when access to a file was denied.<br> * Default implementation will rise a <code>IOException</code> instead of * <code>SecurityException</code>. May be overridden by extending classes to * do something else. + * + * Because this method throws an IOException that will propogate beyond the + * walk method, if an application wishes to continue walking after encountering + * a SecurityException while accessing a file or directory, then it must override + * this and provide an implementation that does not throw an exception. * * @param file <code>File</code>-object, to which access was restricted. * @throws IOException in default implementation. @@ -265,9 +419,16 @@ } /** - * This method is called, when walking is about to start.<br> + * Handle the initial directory of a tree. + * + * This method is called, when walking is about to start. It gets called + * for each directory that was initially supplied to the walk method. + * * By default, it does nothing. May be overridden by extending classes to do * something else. + * + * Override this to do some initialization before starting to walk each of the + * given directory roots. * * @param file <code>File</code>-object, that represents starting dir. * @throws IOException if IO error occurs. @@ -286,19 +447,34 @@ } /** - * - * @param file <code>File</code>-object, that represents current directory. <br> - * Override this, to do some actions on this directory. + * Handle a directory. + * + * Override this to perform some operation on this directory. + * + * @param file <code>File</code>-object, that represents current directory. * @throws IOException if IO error occurs. */ public abstract void handleDir(final File file) throws IOException; /** - * - * @param file <code>File</code>-object, that represents current file. <br> - * Override this, to do some actions on this file. + * Handle a file. + * + * Override this to perform some operation on this file. + * + * @param file <code>File</code>-object, that represents current file. * @throws IOException if IO error occurs. */ public abstract void handleFile(final File file) throws IOException; - + + /** + * Handle a special file. + * + * Override this to perform some operation on this special file. + * + * @param <code>File</code> object that represents a special file. + * @throws IOException if an IO error occurs. + */ + public void handleSpecialFile(File file) throws IOException { + // do nothing by default + } } Modified: trunk/cli/src/commands/org/jnode/command/util/IOUtils.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-05-02 11:03:59 UTC (rev 5384) +++ trunk/cli/src/commands/org/jnode/command/util/IOUtils.java 2009-05-03 04:17:51 UTC (rev 5385) @@ -35,6 +35,8 @@ import java.io.OutputStream; import java.io.PrintWriter; import java.io.Reader; +import java.util.List; +import java.util.LinkedList; /** * Convenience IO methods. @@ -402,6 +404,7 @@ * @throws NullPointerException if in, out or str are null */ public static boolean promptYesOrNo(Reader in, PrintWriter out, String prompt, boolean defaultChoice) { + checkNull(in, out, prompt); String input; // put a cap on the loops so it doesn't become an infinite loop @@ -467,7 +470,63 @@ return input; } + public static List<String> readLines(Reader reader) { + return readLines(new BufferedReader(reader, BUFFER_SIZE), -1); + } + + public static List<String> readLines(BufferedReader reader) { + return readLines(reader, -1); + } + /** + * Read all of the lines from a Reader. + * + * Calling this is the same as readLines(new BufferedReader(reader), max) + * + * @param reader the source to read from + * @param max the max number of lines to read, if this is -1 Integer.MAX_VALUE is used + * @returns a list of strings, possibly empty, or null if there was an exception. + * @throws NullPointerException if reader is null + */ + public static List<String> readLines(Reader reader, int max) { + return readLines(new BufferedReader(reader, BUFFER_SIZE), max); + } + + /** + * Read all of the lines from a Reader. + * + * If there are no lines to read, an empty List will be returned. + * + * If there was an exception while reading, null will be returned. + * + * @param reader the source to read from + * @param max the max number of lines to read, if this is -1 Integer.MAX_VALUE is used + * @returns a list of strings, possibly empty, or null if there was an exception. + * @throws NullPointerException if reader is null + */ + public static List<String> readLines(BufferedReader reader, int max) { + List<String> ret = new LinkedList<String>(); + String line; + int count = 0; + + try { + if (max > 0) { + while ((count++ < max) && (line = reader.readLine()) != null) { + ret.add(line); + } + } else { + while ((line = reader.readLine()) != null) { + ret.add(line); + } + } + } catch (IOException e) { + return null; + } + + return ret; + } + + /** * Check for null objects in a list of objects. */ private static void checkNull(Object... objs) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cr...@us...> - 2009-07-07 10:38:17
|
Revision: 5595 http://jnode.svn.sourceforge.net/jnode/?rev=5595&view=rev Author: crawley Date: 2009-07-07 10:24:20 +0000 (Tue, 07 Jul 2009) Log Message: ----------- Javadoc fixes Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java trunk/cli/src/commands/org/jnode/command/file/WcCommand.java Modified: trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -125,11 +125,10 @@ * This is most usefull for applying a stream filter that reads data from a source * and pipes the contents to an output stream. * - * @param InputStream stream to read from - * @param OutputStream stream to write to - * @param int size of buffer to use. + * @param in stream to read from + * @param out stream to write to */ - protected void processStream(InputStream in , OutputStream out) throws IOException { + protected void processStream(InputStream in, OutputStream out) throws IOException { int len; if (buffer == null) buffer = new byte[4096]; while ((len = in.read(buffer)) > 0) { @@ -143,13 +142,13 @@ * If there is a problem opening the stream, the exception is caught and an error message * is displayed. * - * @param File the file to open the stream on - * @param boolean if the file exists, delete it first - * @param boolean if delete is true, this forces the deletion without prompting the user + * @param file the file to open the stream on + * @param delete if the file exists, delete it first + * @param forced if true, this forces the deletion without prompting the user * @return an OutputStream on the file, or null if there was a problem. null could also be * returned if the delete option was chosen and the user said no to overwriting. */ - protected OutputStream openFileWrite(File file , boolean delete , boolean forced) { + protected OutputStream openFileWrite(File file, boolean delete, boolean forced) { try { boolean createNew = true; if (file == null) { @@ -190,7 +189,7 @@ * If there is a problem opening the stream, the IOException is caught, and an * error message displayed to the console. * - * @param the file to open the stream on + * @param file the file to open the stream on * @return the InputStream or null if there was a problem. */ protected InputStream openFileRead(File file) { @@ -238,13 +237,14 @@ * FIXME This is unsafe as it will trigger an endless loop if stdin * is not the terminal. * - * @param String the question to ask the user + * @param s the question to ask the user + * @param defaultY if {#code true}, the default answer is yes, otherwise no. * @return true if the user said yes, false if the user said no */ protected boolean prompt_yn(String s, boolean defaultY) { int choice; // put a cap on the looping to prevent non-terminal stdin - // from an infinte loop + // from an infinite loop for (int i = 0; i < 10; i++) { stdoutWriter.print(s); try { Modified: trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -25,9 +25,9 @@ import org.jnode.shell.syntax.StringArgument; /** - * Unix `basename` command. + * Command to get the filename part of a pathname. * - * @see {@link http://www.opengroup.org/onlinepubs/000095399/utilities/basename.html} + * @see <a href="http://www.opengroup.org/onlinepubs/000095399/utilities/basename.html">POSIX "basename" command</a> * @author chris boertien */ public class BasenameCommand extends AbstractCommand { Modified: trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -25,8 +25,8 @@ import org.jnode.shell.syntax.StringArgument; /** - * Unix `dirname` command - * @see http://www.opengroup.org/onlinepubs/000095399/utilities/dirname.html + * Command to get the directory part of a pathname. + * @see <a href="http://www.opengroup.org/onlinepubs/000095399/utilities/dirname.html">POSIX "dirname" command</a> * @author chris boertien */ public class DirnameCommand extends AbstractCommand { Modified: trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -40,7 +40,7 @@ public class HistoryCommand extends AbstractCommand { private static final String help_index = "A history list index"; - private static final String help_prefix = "A histor list prefix (>= 0)"; + private static final String help_prefix = "A history list prefix (>= 0)"; private static final String help_test = "If set, don't try to execute the history command"; private static final String help_super = "Command history list or execute"; private static final String err_not_found_1 = "History command #%d not found%n"; Modified: trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -43,7 +43,7 @@ * @author Martin Husted Hartvig (hagar at jnode.org) * @author cr...@jn... * @author chris boertien - * @see {@link http://www.opengroup.org/onlinepubs/009695399/utilities/rm.html} + * @see <a href="http://www.opengroup.org/onlinepubs/009695399/utilities/rm.html">POSIX "rm" command</a> */ public class DeleteCommand extends AbstractCommand { Modified: trunk/cli/src/commands/org/jnode/command/file/WcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2009-07-06 15:23:39 UTC (rev 5594) +++ trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2009-07-07 10:24:20 UTC (rev 5595) @@ -35,9 +35,9 @@ import org.jnode.shell.syntax.FlagArgument; /** - * Word, line and byte or character count command. + * Count the words, lines and bytes or characters in a file or stream. * - * @see {@link http://www.opengroup.org/onlinepubs/7990989775/xcu/wc.html} + * @see <a href="http://www.opengroup.org/onlinepubs/7990989775/xcu/wc.html">POSIX "wc" command</a> * @author cy6erGn0m * @author Yves Galante */ @@ -45,7 +45,7 @@ private static final String STR_SUPER = "Print newline, word, and byte counts for each file."; private static final String STR_TOTAL = "total"; - private static final String STR_ERROR_DIR = "File is a directoy : "; + private static final String STR_ERROR_DIR = "File is a directory : "; private static final String STR_ERROR_NOT_EXIST = "File not exist : "; private static final String STR_ERROR_CANT_READ = "File can't be read : "; private static final String STR_ERROR_IO_EX = "IO error"; @@ -161,10 +161,8 @@ /** * Prints results. * - * @param printWriter - * the print writer - * @param listWc - * the world count stream list + * @param printWriter the print writer + * @param listWc the world count stream list */ private void printResults(PrintWriter printWriter, List<WcStream> listWc) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-03 11:09:34
|
Revision: 5708 http://jnode.svn.sourceforge.net/jnode/?rev=5708&view=rev Author: lsantha Date: 2010-01-03 11:09:20 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZip.java trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GZip.java trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/Zip.java trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java trunk/cli/src/commands/org/jnode/command/common/DateCommand.java trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java trunk/cli/src/commands/org/jnode/command/file/CatCommand.java trunk/cli/src/commands/org/jnode/command/file/CdCommand.java trunk/cli/src/commands/org/jnode/command/file/CpCommand.java trunk/cli/src/commands/org/jnode/command/file/CutCommand.java trunk/cli/src/commands/org/jnode/command/file/DFCommand.java trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java trunk/cli/src/commands/org/jnode/command/file/DirCommand.java trunk/cli/src/commands/org/jnode/command/file/DuCommand.java trunk/cli/src/commands/org/jnode/command/file/FindCommand.java trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java trunk/cli/src/commands/org/jnode/command/file/SortCommand.java trunk/cli/src/commands/org/jnode/command/file/TailCommand.java trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java trunk/cli/src/commands/org/jnode/command/file/WcCommand.java trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java trunk/cli/src/commands/org/jnode/command/net/PingCommand.java trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java trunk/cli/src/commands/org/jnode/command/system/GcCommand.java trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java trunk/cli/src/commands/org/jnode/command/system/KillCommand.java trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java trunk/cli/src/commands/org/jnode/command/system/LsIRQCommand.java trunk/cli/src/commands/org/jnode/command/system/MemoryCommand.java trunk/cli/src/commands/org/jnode/command/system/NamespaceCommand.java trunk/cli/src/commands/org/jnode/command/system/OnHeapCommand.java trunk/cli/src/commands/org/jnode/command/system/PageCommand.java trunk/cli/src/commands/org/jnode/command/system/PluginCommand.java trunk/cli/src/commands/org/jnode/command/system/PrintEnvCommand.java trunk/cli/src/commands/org/jnode/command/system/RebootCommand.java trunk/cli/src/commands/org/jnode/command/system/RunCommand.java trunk/cli/src/commands/org/jnode/command/system/SetCommand.java trunk/cli/src/commands/org/jnode/command/system/SyntaxCommand.java trunk/cli/src/commands/org/jnode/command/system/TerminateCommand.java trunk/cli/src/commands/org/jnode/command/system/ThreadCommand.java trunk/cli/src/commands/org/jnode/command/system/VmInfoCommand.java trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java trunk/cli/src/commands/org/jnode/command/util/NumberRange.java Modified: trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.Closeable; Modified: trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/BZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/GZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/Zip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.util.ArrayList; Modified: trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DateCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.common; import gnu.java.security.action.GetEnvAction; Modified: trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,22 +1,23 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * - * This library is distributed in the hope that it will be useful, but + * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with this library; If not, write to the Free Software Foundation, Inc., + * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.common; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,22 +1,23 @@ /* - * $Id: UptimeCommand.java 4977 2009-02-02 09:09:41Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * - * This library is distributed in the hope that it will be useful, but + * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with this library; If not, write to the Free Software Foundation, Inc., + * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.common; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: CatCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DFCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DuCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: DuCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/FindCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: CdCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import org.jnode.shell.AbstractCommand; Modified: trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.BufferedReader; Modified: trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/SortCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/TailCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import org.jnode.shell.AbstractCommand; Modified: trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/WcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/PingCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.system; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/GcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/Isolat... [truncated message content] |
From: <ls...@us...> - 2013-02-17 19:20:05
|
Revision: 5954 http://jnode.svn.sourceforge.net/jnode/?rev=5954&view=rev Author: lsantha Date: 2013-02-17 19:19:53 +0000 (Sun, 17 Feb 2013) Log Message: ----------- Updated headers. Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZip.java trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GZip.java trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/Zip.java trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java trunk/cli/src/commands/org/jnode/command/common/DateCommand.java trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java trunk/cli/src/commands/org/jnode/command/file/CatCommand.java trunk/cli/src/commands/org/jnode/command/file/CdCommand.java trunk/cli/src/commands/org/jnode/command/file/CmpCommand.java trunk/cli/src/commands/org/jnode/command/file/CpCommand.java trunk/cli/src/commands/org/jnode/command/file/CutCommand.java trunk/cli/src/commands/org/jnode/command/file/DFCommand.java trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java trunk/cli/src/commands/org/jnode/command/file/DirCommand.java trunk/cli/src/commands/org/jnode/command/file/DuCommand.java trunk/cli/src/commands/org/jnode/command/file/FindCommand.java trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java trunk/cli/src/commands/org/jnode/command/file/SortCommand.java trunk/cli/src/commands/org/jnode/command/file/TailCommand.java trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java trunk/cli/src/commands/org/jnode/command/file/WcCommand.java trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java trunk/cli/src/commands/org/jnode/command/net/PingCommand.java trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java trunk/cli/src/commands/org/jnode/command/system/GcCommand.java trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java trunk/cli/src/commands/org/jnode/command/system/KillCommand.java trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java trunk/cli/src/commands/org/jnode/command/system/LsIRQCommand.java trunk/cli/src/commands/org/jnode/command/system/MemoryCommand.java trunk/cli/src/commands/org/jnode/command/system/NamespaceCommand.java trunk/cli/src/commands/org/jnode/command/system/OnHeapCommand.java trunk/cli/src/commands/org/jnode/command/system/PageCommand.java trunk/cli/src/commands/org/jnode/command/system/PluginCommand.java trunk/cli/src/commands/org/jnode/command/system/PrintEnvCommand.java trunk/cli/src/commands/org/jnode/command/system/RebootCommand.java trunk/cli/src/commands/org/jnode/command/system/RunCommand.java trunk/cli/src/commands/org/jnode/command/system/SetCommand.java trunk/cli/src/commands/org/jnode/command/system/SyntaxCommand.java trunk/cli/src/commands/org/jnode/command/system/TerminateCommand.java trunk/cli/src/commands/org/jnode/command/system/ThreadCommand.java trunk/cli/src/commands/org/jnode/command/system/UnameCommand.java trunk/cli/src/commands/org/jnode/command/system/VmInfoCommand.java trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java trunk/cli/src/commands/org/jnode/command/util/NumberRange.java Modified: trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/BZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/GZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/Zip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DateCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CmpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CmpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/CmpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DFCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DuCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/FindCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/SortCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/TailCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/WcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/PingCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/GcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/KillCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/KillCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/KillCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java 2013-02-17 17:39:21 UTC (rev 5953) +++ trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java 2013-02-17 19:19:53 UTC (rev 5954) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as publ... [truncated message content] |