HADOOP-7241. fix typo of command 'hadoop fs -help tail'. Contributed by Wei Yongjun
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1096522 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dc16490ad3
commit
e0cc26093c
|
@ -381,6 +381,9 @@ Release 0.22.0 - Unreleased
|
|||
HADOOP-7187. Fix socket leak in GangliaContext. (Uma Maheswara Rao G
|
||||
via szetszwo)
|
||||
|
||||
HADOOP-7241. fix typo of command 'hadoop fs -help tail'.
|
||||
(Wei Yongjun via eli)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-6884. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
|
||||
|
|
|
@ -1436,7 +1436,7 @@ public class FsShell extends Configured implements Tool {
|
|||
|
||||
String tail = TAIL_USAGE
|
||||
+ ": Show the last 1KB of the file. \n"
|
||||
+ "\t\tThe -f option shows apended data as the file grows. \n";
|
||||
+ "\t\tThe -f option shows appended data as the file grows. \n";
|
||||
|
||||
String chmod = FsShellPermissions.CHMOD_USAGE + "\n" +
|
||||
"\t\tChanges permissions of a file.\n" +
|
||||
|
|
|
@ -610,7 +610,7 @@
|
|||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^( |\t)*The -f option shows apended data as the file grows.( )*</expected-output>
|
||||
<expected-output>^( |\t)*The -f option shows appended data as the file grows.( )*</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
|
Loading…
Reference in New Issue