|
- Backslash ( \ ) is the escape character and makes the next character literal
- Used as last character on line to "continue command on next line"
- $ echo "This long sample string will be echoed \
- > back as one long line"
- This very long sample string will be echoed back as one long line
|