⚡ TERMINAL SPEED RUN

00:00

🎯 Tasks

Your mission, should you choose to accept it...

⚙️ Available Commands

lsList current directory contents
ls <directory>List specified directory contents
ls -aList all files, including hidden ones
cd <directory>Change directory / Go back home
mkdir <directory>Create a directory
touch <filename>Create an empty file
cat <filename>Display file contents
echo "text" > filenameWrite to file
mv <source> <dest>Move or rename files
rm <file/dir>Remove files/directories
pwdPrint working directory
find . -name "*.txt"Search for files
grep text <filename>Search for text in file
ls -l <filename>View long-listing details / permissions
chmod +x <filename>Make file executable
./<filename>Run file
whoamiPrint current user
&&Join commands - Ex: mkdir folder && cd folder
clearClear the terminal
helpShow this help message
user@speedrun:~$