##mapper.sh #! /bin/bash while read LINE; do for word in $LINE do echo "$word 1" done done ##reducer.sh #! /bin/bash count=0 started=0 word="" while read LINE;do newword=`echo $LINE | cut -d ' ' -f 1` if [ "$word" != "$newword" ];then [ $started -ne 0 ] && echo -e "$word \t $count" word=$newword count=1 started=1 else count=$(( $count + 1 )) fi done echo -e "$word \t $count"原文链接:https://www.f2er.com/bash/392129.html