Is it possible to write text from the command line into Hadoop?
Trying to do something similar to the unix write/append to file command.
echo "hello world" > hello_world.txt
In Hadoop land I would expect this to work, but the commands do not.
hadoop fs -appendToFile "foo bar" /dir/hadoop/hello_world.txt
hadoop fs -put "hello world" /dir/hadoop/hello_world.txt