#

Automation

Automation related cheatsheet collection - 4 quick reference guides. Find fast, copy directly. The essential online command reference for developers and SRE.

Ansible Cheatsheet - Automation

An Ansible reference covering ad-hoc commands, inventory management, common modules (copy, template, service, shell), Playbook structure, and syntax and check validation.

2026-07-2142 commands
ansibleAutomationOps

cron Cheatsheet - Job Scheduling

For periodic scripts, scheduled backups, and log cleanup, cron is the most widespread Linux job scheduler — the five-field time syntax is the main hurdle. This reference covers the time format and special strings, common examples, crontab subcommands, environment variables, and troubleshooting hooks like log location and MAILTO.

2026-07-2143 commands
cronScheduled Taskscrontab

PowerShell Cheatsheet - PowerShell Command Reference

On Windows, system administration and automation hinge on PowerShell's object pipeline — cmdlets return objects, not text, so you filter and act on properties directly. This reference covers common cmdlets and their Linux counterparts, file/process/service operations, and Invoke-Command remoting, to turn daily Windows ops into scripts.

2026-07-2158 commands
powershellwindowsScripting

Makefile Cheatsheet - Build Automation

The Makefile's real value is its dependency graph — declaring prerequisites means only stale targets rebuild, which is why it also powers many non-C automation tasks. This reference covers variable assignment (= vs := vs ?=), targets and rules, pattern rules and automatic variables, conditionals and functions, plus common pitfalls like .PHONY.

2026-07-1942 commands
makefileBuildCompilation