Multiline string literals that use similar syntax, preserving line breaks and other whitespace (including indentation) in the text.
What does the triple-less-than-sign bash operator, <<<, mean, as inside the following code block? LINE="7.6.5.4" IFS=. read -a …
bash shell herestringcode s='id;some text here with possible ; inside' IFS=';' read -r id string <<< "$s" …
linux bash sh herestring