You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pwd# Show current working directory
ls # List files and folders
ls -a # List all files including hidden
ls -l # List files with detailscd foldername # Change into directorycd .. # Go up one level
mkdir folder # Create a new folder
rmdir folder # Remove empty folder
rm filename # Delete a file
rm -r folder # Delete folder and contents
touch file.txt # Create a blank file
cp file1 file2 # Copy file
mv old new # Rename or move file
cat file.txt # Show file content
stat file.txt # File info