api: "YAML JSON TOON Database" version: 1.0.0 format: toon 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: 1 created_at: 1781275786 updated_at: 1781275786 data: commands [6]{command,description,example}: ls,"List directory contents","ls -la /home" find,"Search for files in directory hierarchy","find . -name \"*.php\"" grep,"Search text using patterns","grep -r \"function\" src/" awk,"Pattern scanning and processing language","awk '{print $1}' file.txt" sed,"Stream editor for filtering and transforming text","sed 's/old/new/g' file.txt" tar,"Archive files","tar -czf archive.tar.gz folder/"