Claude Code Plugins

Community-maintained marketplace

Feedback

Linux shell basics - navigation, commands, file operations

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

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

# Navigate and list
cd /var/log
ls -la

# Find files
find / -name "*.log" -mtime -1

# Search in files
grep -r "error" /var/log/