Shell Scripts
One-liner install.sh from github
install.sh from githubwget -O - https://raw.githubusercontent.com/<username>/<project>/<branch>/<path>/<file> | bashwget -O - https://raw.githubusercontent.com/djsnipa1/psytrance-new-releases/master/install.sh | bashMultiline strings
cat << EndOfMessage
This is line 1.
This is line 2.
Line 3.
EndOfMessagecat > $FILE <<- EOM
Line 1.
Line 2.
EOMLast updated