View original Gist on GitHub
Tags: #bash #heredoc #file
cat > foo.txt <<EOF content EOF # Alternative version cat << EOF > ./sass/test.scss body { p { &:hover { color: red; } } } EOF