Multiple choice technology operating systems

Consider the script "beach.sh"
for i in $1; do
if (( ${#i} > 4 )); then
print -n "#$i "
fi
done

beach.sh "On the beach at night, stands a child with her father"

  1. #On the beach at night, stands a child with her father

  2. #On #the #at #a #with #her

  3. #beac #nigh #stan #chil #fath

  4. #beach #night, #stands #child #father

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

This is a duplicate of question 136524. The script iterates over words and prefixes those longer than 4 characters with '#'. Words qualifying: 'beach'(5), 'night,'(6), 'stands'(6), 'child'(5), 'father'(6). Punctuation is included in character count.