Unix Command Practice Terminal
user@unix-practice:~$ Welcome to Unix Commands Practice Tool!
Type any Unix command to practice. Type 'help' for available commands.
user@unix-practice:~$
user@unix-practice:~$

Command Reference

File System Commands

ls
List directory contents
ls [options] [directory]
ls -la /home/user
cd
Change directory
cd [directory]
cd /var/log
pwd
Print working directory
pwd
pwd

File Operations

cp
Copy files or directories
cp [options] source destination
cp file1.txt file2.txt
mv
Move or rename files
mv [options] source destination
mv oldname.txt newname.txt
rm
Remove files or directories
rm [options] file
rm -rf temp_directory