Noted imagemagick and lectures

This commit is contained in:
2025-01-30 17:29:25 +01:00
parent ed3d85e99b
commit 74baee3b49
4 changed files with 35 additions and 12 deletions

View File

@@ -4,11 +4,13 @@
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 |
| 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 |
| ls -altr | give a list of files in order of time and reversed so the latest file is at the bottom |
| | |