awk '{for(i=1;i<=NF;i++)if(length($i)<8) print $i}'

awk 'BEGIN{RS="[[:space:]]"}length($0)<8{print}'