“Skrypt heredoc w var” Kod odpowiedzi

Skrypt heredoc w 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

Skrypt heredoc w var

VAR=<<END
abc
END
DreamCoder

Skrypt heredoc w var

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

Skrypt heredoc w var

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

echo "$VAR"
DreamCoder

Skrypt heredoc w var

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

Odpowiedzi podobne do “Skrypt heredoc w var”

Pytania podobne do “Skrypt heredoc w var”

Więcej pokrewnych odpowiedzi na “Skrypt heredoc w var” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu