如何修改HDFS上文件

如果只想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
上一篇:angular笔记_1


下一篇:C#实现环形队列