Linux shell basics - navigation, commands, file operations
View on GitHubpluginagentmarketplace/custom-plugin-linux
custom-plugin-linux
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/pluginagentmarketplace/custom-plugin-linux/blob/main/skills/shell-basics/SKILL.md -a claude-code --skill shell-basicsInstallation paths:
.claude/skills/shell-basics/# 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/ ```