api: YAML JSON TOON Database
version: 1.0.0
format: yaml
dataset:
  id: 409
  slug: file-operations
  title: Unix File Operation Commands
  description: "Common Unix commands for file and directory operations: ls, find, grep, awk, sed, and tar with examples and usage notes."
  category: Unix Commands
  category_slug: unix-commands
  tags: unix,linux,commands,shell
  view_count: 2
  created_at: 1781275786
  updated_at: 1781275786
data:
  commands:
    - command: ls
      description: List directory contents
      example: ls -la /home
    - command: find
      description: Search for files in directory hierarchy
      example: find . -name "*.php"
    - command: grep
      description: Search text using patterns
      example: grep -r "function" src/
    - command: awk
      description: Pattern scanning and processing language
      example: awk '{print $1}' file.txt
    - command: sed
      description: Stream editor for filtering and transforming text
      example: sed 's/old/new/g' file.txt
    - command: tar
      description: Archive files
      example: tar -czf archive.tar.gz folder/
