1. 程式人生 > >Hadoop之HDFS的Shell指令碼命令總結

Hadoop之HDFS的Shell指令碼命令總結

       #hadoop fs -ls /                        檢視HDFS根目錄
       #hadoop fs -mkdir /test           在根目錄建立一個目錄test
       #hadoop fs -put ./test.txt /test  或 #hadoop fs -copyFromLocal  /test.txt /test        上傳檔案
       #hadoop fs -get /test/test.txt    或 #hadoop fs -getToLocal /test/test.txt                  下載檔案   
       #hadoop fs -rm /test1/test.txt           刪除檔案
       #hadoop fs -rmr /test1                      刪除資料夾
       #hadoop fs -mv /test/test.txt /test1  移動檔案