Skip to content

Instantly share code, notes, and snippets.

@tech-otaku
Created January 9, 2022 08:21
Show Gist options
  • Save tech-otaku/e96fae365158a3802e8109508d2adf7f to your computer and use it in GitHub Desktop.
Save tech-otaku/e96fae365158a3802e8109508d2adf7f to your computer and use it in GitHub Desktop.
Expanding variables in a *nix shell 'here document' (heredoc).
Command:
cat << EOF
$USER 
$HOME
EOF
Output:
steve 
/Users/steve

Command:
cat << 'EOF'
$USER 
$HOME
EOF
Output:
$USER 
$HOME

Command:
cat << \EOF
$USER 
$HOME
EOF
Output:
$USER 
$HOME

Command:
cat << EOF
\$USER 
$HOME
EOF
Output:
$USER 
/Users/steve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment