api: YAML JSON TOON Database
version: 1.0.0
format: yaml
dataset:
  id: 474
  slug: process-management-commands
  title: Unix Process & System Management Commands
  description: Essential Unix commands for monitoring and managing processes and system resources.
  category: Unix Commands
  category_slug: unix-commands
  tags: unix,linux,commands,process,system,admin
  view_count: 2
  created_at: 1781275786
  updated_at: 1781275786
data:
  commands:
    - command: ps
      description: Display information about running processes
      example: ps aux
      category: Process Monitoring
    - command: top
      description: Display real-time system summary and process list
      example: top -o %MEM
      category: Process Monitoring
    - command: htop
      description: Interactive process viewer (enhanced top)
      example: htop
      category: Process Monitoring
    - command: kill
      description: Send a signal to a process
      example: kill -9 1234
      category: Process Control
    - command: nice
      description: Run a program with modified scheduling priority
      example: nice -n 10 ./script.sh
      category: Process Control
    - command: df
      description: Report filesystem disk space usage
      example: df -h
      category: System Monitoring
    - command: du
      description: Estimate file and directory space usage
      example: du -sh /home
      category: System Monitoring
    - command: free
      description: Display amount of free and used memory
      example: free -h
      category: System Monitoring
    - command: uname
      description: Print system information
      example: uname -a
      category: System Information
    - command: lscpu
      description: Display CPU architecture information
      example: lscpu
      category: System Information
