Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
myvar="some text"
echo "$myvar"
echo '$myvar'

When

Functions

A bash function looks like this, with or without the function keyword.

...