I have something like this
command \
second line of command \
...
...
How do I confirm so it executes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The backslash (\) at the end of the line continues the command to the next line. Don’t end the last line of the command with a backslash and it will execute the whole command.
If you have an unclosed quote (” or ‘), the command also won’t complete until you close the quote. Also some uncompleted commands are detected and continue to prompt you for the rest of the command. In bash, simply typing ‘if’ for example won’t complete until the shell sees the terminating ‘fi’.