From bece43cc3cc55c069c1f795715328948b72606ef Mon Sep 17 00:00:00 2001 From: Sam Hos Date: Tue, 28 Jan 2025 11:15:32 +0100 Subject: [PATCH] lnux commands extra command --- docs/bootcamp/basic _linux_commands.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/bootcamp/basic _linux_commands.md b/docs/bootcamp/basic _linux_commands.md index de232cd..5c11100 100644 --- a/docs/bootcamp/basic _linux_commands.md +++ b/docs/bootcamp/basic _linux_commands.md @@ -1,9 +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 | remove a file | -| 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 | \ No newline at end of file