Hdfs上的数据文件为T0,T1,T2(无后缀): T0: What has come into being in him was life, and the life was the light of all people. The light shines in the darkness, and the darkness did not overcome it. Enter through the narrow gate; for the gate is wide and the road…
如果只想append操作: . echo "<Text to append>" | hdfs dfs -appendToFile - yourHdfsPath/test.txt 如果想modify操作: hdfs dfs -get yourHdfsPath/test.txt vi test.txt #or use any other tool and modify it hdfs dfs -put -f test.txt yourHdfsPath/test.txt…