theshell.ch/site/pages/topic/fs.html
maggicl 2404763b4b team-leader: W3C validator code review
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@255 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-18 20:44:36 +00:00

14 lines
1.1 KiB
HTML

---
layout: topic
category-page: fs
title: Filesystem
author: Filesystem team
---
<!-- Description by Ricardo Vivanco -->
<p class="description-section">The File System (FS) shell includes various shell-like commands that directly interact with the Hadoop Distributed File System (HDFS) as well as other file systems that Hadoop supports, such as Local FS, HFTP FS, S3 FS, and others. The FS shell is invoked by:
bin/hadoop fs
All FS shell commands take path URIs as arguments. The URI format is scheme://authority/path. For HDFS the scheme is hdfs, and for the Local FS the scheme is file. The scheme and authority are optional. If not specified, the default scheme specified in the configuration is used. An HDFS file or directory such as /parent/child can be specified as hdfs://namenodehost/parent/child or simply as /parent/child (given that your configuration is set to point to hdfs://namenodehost).
Most of the commands in FS shell behave like corresponding Unix commands. Differences are described with each of the commands. Error information is sent to stderr and the output is sent to stdout.</p>