Shell script basic notes (1)
1. Command Segmentation in Bash
Each command or sequence of commands is separated by semicolons (;) or newline characters (\n).
$ cmd1 ;cmd2
Equivalent to
$cmd1
$cmd2
2. Terminal printing echo and printf
Double quotation marks - variable name replacement; special character order escape character () - e takes effect
Single quotation ma ...
Posted by loganbest on Thu, 23 May 2019 20:50:24 +0200