structuring the project and docs about drone code

This commit is contained in:
2025-01-29 11:51:07 +01:00
parent 1397d66b54
commit 8e91571c15
16 changed files with 31 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
# Basic linux terminal commands
## When do I need these?
You need to know these commands if you wanna navigate a Unix like system like linux or macOS in the terminal. The terminal is used a lot for git so knowing these commands is a must.
## Commands
| Command | Description |
| --------- | ------------------------------------- |
| cat | read a file and output it to terminal |
| cd | change directory |
| ls | view all files in the current folder |
| ls -la | same as ls but also view hidden files |
| rm <file> | remove a file |