Free LPI 010-160 Actual Exam Questions - Question 11 Discussion

Question No. 11
When typing a long command line at the shell, what single character can be used to split a command
across multiple lines?
US
RG
Ravi G.
2026-02-20

Backslash works because it escapes the newline, so line breaks don’t end commands.

0
RG
Ravi G.
2026-01-30

Another way to think about it: semicolon and ampersand definitely don’t split commands across lines; they just separate or background commands. The only character that tells the shell to treat the next line as part of the same command is the backslash (\). So yeah, it’s really about signaling continuation, which only the backslash does here.

0
RG
Ravi G.
2026-01-28

I agree the backslash is the way to go here. It’s the only character that explicitly tells the shell to treat the next line as a continuation of the current command. Other characters like semicolon or ampersand either end a command or run it in the background, so they won’t help split a single long command over multiple lines.

0
MD
Mohammad D.
2026-01-25

The backslash makes the most sense here since it tells the shell to ignore the newline and keep going. None of the other characters actually continue a command onto the next line.

0
RA
Ryan A.
2026-01-17

I’m pretty sure it’s the backslash (\). Other options seem off, like semicolon just separates commands, not splits lines.

0