Linux shell scripting mastery - Bash, automation, cron jobs
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/scripting/SKILL.md -a claude-code --skill scriptingInstallation paths:
.claude/skills/scripting/# Scripting Skill ## Overview Advanced Linux shell scripting for automation and system administration. ## Capabilities - **Bash Scripting**: Variables, loops, functions - **Text Processing**: sed, awk, grep, cut - **Automation**: cron, systemd timers - **Error Handling**: Exit codes, traps - **Best Practices**: Shellcheck, style guides ## Examples ```bash #!/bin/bash # Backup script backup_dir="/backup/$(date +%Y%m%d)" mkdir -p "$backup_dir" tar -czf "$backup_dir/data.tar.gz" /var/data ```