Tag:ar use sp file div art bs ad ef
The call file system (FS) shell command should use the form Bin/hadoop FS. All FS shell commands use the URI path as the parameter. The URI format is Scheme://authority/path. The scheme for HDFs is HDFs, the scheme is file for the local filesystem. The scheme and authority parameters are optional, and if not specified, the default scheme specified in the configuration is used. For example:/parent/child can be expressed as hdfs://namenode:namenodeport/parent/child, or simpler/parent/child (assuming the configuration file Namenode: Namenodeport) The behavior of most FS shell commands is similar to the corresponding UNIX shell command. -help [cmd] //display command help-ls (r) <path> //Show All files in current directory-du (s) <path> //Show all file sizes in directory-count[-q ] <path> //Display the number of files in the directory-MV <src> <dst> //move multiple files to the target directory-CP <src> <dst> // Copy multiple files to target directory-rm (r) //delete files (clips)-put <localsrc> <dst> //local file Copy to hdfs-copyfromlocal // With put-movefromlocal //move from local file to Hdfs-get [-IGNORECRC] <src> <localdst> //Copy file to local, CRC checksum can be ignored-getmerge <src> <localdst> //Sorting all files in the source directory into a single file-cat <src> //Display the contents of the file in the terminal-text <src> //Display file contents in terminal-copytolocal [-IGNORECRC] <src> <localdst> //Copy to local-movetolocal <src> <localdst>-mkdir <path> //Create a folder-touchz <path> //Create an empty file
Hadoop Learning Fifth: HDFs shell commands