BytesOfProgress

Wiki


Combining multiple commands

Pipeline (|)

The pipeline operator (|) is a powerful tool that lets you take the output of one command and use it as input for another. This creates a seamless flow of data between commands, allowing you to perform complex operations in a single line.


  # command1 | command2
    

Logical Operators (&& and ||)

Logical operators, specifically && and ||, provide control over command execution based on the success or failure of previous commands. These operators are excellent for automating tasks that depend on specific outcomes.

  # command1 && command2

  # command1 || command2



back