Member since
04-16-2018
3
Posts
0
Kudos Received
0
Solutions
04-16-2018
07:47 AM
For the trivial shell example you could just make echo print both with an inlined sub-shell that does the counting: for file in $(FILE_LIST_SUBCOMMAND) do echo ${file} $(hadoop fs -text ${file} | wc -l) done
... View more