Today we will learn how to use different command chaining operators available for us in an easy way.
Command chaining operators
& –Sends process background (so we can run multiple process parallel)
; –Run multiple commands in one run, sequentially.
\ –To type larger command in multiple lines
&& –Logical AND operator
|| –Logical OR operator
! -NOT operator …
| — PIPE operator
{} –Command combination operator.
() –Precedence operator
Full article here:
25+ Awesome Linux/Unix command chaining examples (The Linux Juggernaut)