> For the complete documentation index, see [llms.txt](https://shafagh.gitbook.io/try-hack-me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shafagh.gitbook.io/try-hack-me/pre-security-tools/basic-linux-operators.md).

# basic Linux operators

| Symbol / Operator | Description                                                                                                                                      |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `&`               | This operator allows you to run commands in the background of your terminal.                                                                     |
| `&&`              | This operator allows you to combine multiple commands together in one line of your terminal.                                                     |
| `>`               | This operator is a redirector - meaning that we can take the output from a command (such as using cat to output a file) and direct it elsewhere. |
| `>>`              | This operator does the same function of the `>` operator but appends the output rather than replacing (meaning nothing is overwritten).          |
