“Heredoc -Drehbuch in Var” Code-Antworten

Heredoc -Drehbuch in Var

VAR=$(cat <<'END_HEREDOC'
abc'asdf"
$(dont-execute-this)
foo"bar"''
END_HEREDOC
)

# this will echo variable with new lines intact
echo "$VAR"
# this will echo variable without new lines (changed to space character)
echo $VAR
DreamCoder

Heredoc -Drehbuch in Var

VAR=<<END
abc
END
DreamCoder

Heredoc -Drehbuch in Var

export A=$(cat <<END
sdfsdf
sdfsdf
sdfsfds
END
) ; echo $A
DreamCoder

Heredoc -Drehbuch in Var

define VAR <<'EOF'
abc'asdf"
$(dont-execute-this)
foo"bar"''
EOF

echo "$VAR"
DreamCoder

Heredoc -Drehbuch in Var

export A=`cat <<END
sdfsdf
sdfsdf
sdfsfds
END
` ; echo $A
DreamCoder

Ähnliche Antworten wie “Heredoc -Drehbuch in Var”

Fragen ähnlich wie “Heredoc -Drehbuch in Var”

Weitere verwandte Antworten zu “Heredoc -Drehbuch in Var” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen