Koder Flashcards
ls
list directory
nano
Simple text editor
grep
Search file(s) for lines that match a given pattern
sudo
Execute a command as another user
cd
change directory
mkdir
Create a new directory
cp
Copy files or directories
mv
Move (rename) files or directories
rm
Remove files or directories
pwd
Determine the current directory youre working in
ssh
Secure Shell (SSH), is a UNIX-based command interface and protocol for securely getting access to a remote computer
ls -F
List files and folder, with folders having a backslah for distinctions sake. Remember large F.
ls -l
List files in column-view, with info like size, modification date, read and write rights etc.
ls -al
List hidden files. (.Filename) Also list files in column-view, with info like size, modification date, read and write rights
-r
Rekursive, all files and folder in a folder.
Eks: cp -r …
Copy rekursive (everything in a folder) …