#!/bin/bash
# Linux system administration commands
# === Process Management ===
ps aux # All processes
ps aux | grep nginx # Find specific process
---
# Main playbook
- name: Configure web servers
hosts: webservers
become: yes
vars: