diff --git a/CHANGES.txt b/CHANGES.txt index a6a6a8d47eb..16dcf4a2e18 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -598,6 +598,9 @@ Release 0.21.1 - Unreleased fs.checkpoint.* with dfs.namenode.checkpoint.* in documentations. (Harsh J Chouraria via szetszwo) + HADOOP-7193. Correct the "fs -touchz" command help message. + (Uma Maheswara Rao G via szetszwo) + Release 0.21.0 - 2010-08-13 INCOMPATIBLE CHANGES diff --git a/src/java/org/apache/hadoop/fs/FsShell.java b/src/java/org/apache/hadoop/fs/FsShell.java index 85e74dc5737..9a0fe75c060 100644 --- a/src/java/org/apache/hadoop/fs/FsShell.java +++ b/src/java/org/apache/hadoop/fs/FsShell.java @@ -1499,8 +1499,9 @@ public class FsShell extends Configured implements Tool { + "\t\tThe -R flag requests a recursive change of replication level \n" + "\t\tfor an entire tree.\n"; - String touchz = "-touchz : Write a timestamp in yyyy-MM-dd HH:mm:ss format\n" + - "\t\tin a file at . An error is returned if the file exists with non-zero length\n"; + String touchz = "-touchz : Creates a file of zero length\n" + + "\t\t at with current time as the timestamp of that .\n" + + "\t\t An error is returned if the file exists with non-zero length\n"; String test = "-test -[ezd] : If file { exists, has zero length, is a directory\n" + "\t\tthen return 0, else return 1.\n";