Welcome to the Linux Shell Tutorial!
Type commands and press Enter to execute.
user@shell:~$ _
ls - List files and directories.pwd - Print working directory.cd <directory> - Change directory. Example: cd Documentsmkdir <directory> - Make directory. Example: mkdir my_folderrmdir <directory> - Remove directory. Example: rmdir my_foldertouch <file> - Create an empty file. Example: touch my_file.txtrm <file> - Remove a file. Example: rm my_file.txtecho <text> - Print text to the console. Example: echo "Hello, world!"cd .. - Go up one directory level.cd / - Go to the root directory.cd ~ - Go to the home directory.