Linux Basic Commands
Here are the fundamental commands every beginner should know:
$ ls # List files
$ pwd # Print current directory
$ cd /path # Change directory
$ mkdir folder # Create a folder
$ rm file # Remove file
$ cp a.txt b.txt # Copy files
$ mv a.txt b.txt # Move/rename files
⬅ Back to Home