Thursday, December 22, 2016

Multiple-Commands-in-one-line

This is how we can give multiple commands in one line

A; B    Run A and then B, regardless of success of A
A && B  Run B if A succeeded
A || B  Run B if A failed

A &     Run A in background.


Source : Internet

No comments:

Post a Comment

Ethernet and more

Ethernet is a protocol under IEEE 802.33 standard User Datagram Protocol (UDP) UDP is a connectionless transport protocol. I...