vault backup: 2024-05-30 17:52:46

This commit is contained in:
zleyyij 2024-05-30 17:52:46 -06:00
parent c468195f91
commit 6434f9be6c

View File

@ -19,8 +19,12 @@ MY_VARIABLE="Hi Mom!"
echo $MY_VARIABLE
```
## Quotes
In Bash, different styles of quotes mean different things:
## Commands
| Command | Description |
| ------------- | ---------------------------------------------------- |
| `exit [CODE]` | Make the script process exit with exit code `[CODE]` |
| Command | Description |
| ------------- | ---------------------------------------------------------------------------------------------- |
| `exit [CODE]` | Make the script process exit, where `[CODE]` is the exit code the process will terminate with. |
| | |