Horje
linux linebreaks script bash Code Example
linux linebreaks script bash
If the statement would be correct without continuation, you need to use \. Therefore, the following works without a backslash, as you can't end a command with a &&:

echo 1 &&
echo 2
Here, you need the backslash:

echo 1 2 3 \
4
or

echo 1 \
&& echo 2
Otherwise, bash would execute the command right after processing the first line without waiting for the next one.




Shell

Related
list all built-in commands you can run in linux Code Example list all built-in commands you can run in linux Code Example
change gunicor port and to https Code Example change gunicor port and to https Code Example
gcloud app deploy Code Example gcloud app deploy Code Example
enviroment variables in firebase Code Example enviroment variables in firebase Code Example
bash show contents of file Code Example bash show contents of file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15