2.2. Multiline CommandΒΆ

We can use ^ character to print command from multiple lines.

When we run command as shown below:

1echo This^
2 will^
3 be^
4 printed^
5 just^
6 as^
7 a^
8 single^
9 line.

The output is:

This will be printed just as a single line.