Or we can change it to use
echo -e "${i// /\\n}" | sort -u
but echo -e is very bad, *check the man page*,
To do it right, we should either use tr or printf:
printf "%s\n" "${i// /$'\n'}" | sort -u
Typo from last email: write=wipe....
sorry!
----------------------------------------------------------- If you wish to unsubscribe from this mailing, send mail to [email protected] with a subject of: unsubscribe t2
