echo "here is a string" | awk ' { split($0, chars, "") for (i=1; i <= length($0); i++) { printf("%s ", chars[i]) } }'