# shell-basics > Linux shell basics - navigation, commands, file operations - Author: pluginagentmarketplace - Repository: pluginagentmarketplace/custom-plugin-linux - Version: 20260105115544 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/pluginagentmarketplace/custom-plugin-linux - Web: https://mule.run/skillshub/@@pluginagentmarketplace/custom-plugin-linux~shell-basics:20260105115544 --- --- name: shell-basics description: "Linux shell basics - navigation, commands, file operations" sasmp_version: "1.3.0" bonded_agent: linux-expert bond_type: PRIMARY_BOND --- # Shell Basics Skill ## Overview Master Linux shell fundamentals for efficient command-line usage. ## Capabilities - **Navigation**: cd, pwd, ls, tree - **File Operations**: cp, mv, rm, mkdir - **Text Viewing**: cat, less, head, tail - **Search**: find, locate, grep - **Permissions**: chmod, chown, umask ## Examples ```bash # Navigate and list cd /var/log ls -la # Find files find / -name "*.log" -mtime -1 # Search in files grep -r "error" /var/log/ ```