Some Importantes Commands Linux
Some Importantes Commands Linux
commands:
ls - List directory contents
ls: List files and directories in the current directory.
ls -l: Detailed list with file permissions, owners, and sizes.
ls -a: List all files, including hidden ones.
ls -lh: Human-readable file sizes.
ls -R: List subdirectories recursively.
cd - Change directory
cd Documents: Change to the 'Documents' directory.
cd /usr/local: Change to the '/usr/local' directory.
cd ~: Change to the home directory.
cd -: Switch to the previous working directory.
cd ..: Move up one directory.