Answers for "replace whitespace with newline"

0

replace whitespace with newline

# credit to the Stack Overflow user in the source link
$ echo 'τέχνη βιβλίο γη κήπος' | sed -E -e 's/[[:blank:]]+/\n/g'
>>> τέχνη
    βιβλίο
    γη
    κήπος
Posted by: Guest on September-14-2021

Code answers related to "replace whitespace with newline"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language