Linux shell scripting mastery - Bash, automation, cron jobs
Executes complex Bash scripts with advanced text processing (sed/awk), cron automation, and error handling. Triggers when you need to automate system tasks, parse logs, or create deployment pipelines.
/plugin marketplace add pluginagentmarketplace/custom-plugin-linux/plugin install custom-plugin-linux@pluginagentmarketplace-linuxThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/config.yamlassets/schema.jsonreferences/GUIDE.mdreferences/PATTERNS.mdscripts/helper.pyscripts/validate.pyAdvanced Linux shell scripting for automation and system administration.
#!/bin/bash
# Backup script
backup_dir="/backup/$(date +%Y%m%d)"
mkdir -p "$backup_dir"
tar -czf "$backup_dir/data.tar.gz" /var/data