awk-sed
Installation
SKILL.md
Identity
| Property | Value |
|---|---|
| Binary | awk, sed, gawk, mawk |
| Config | No persistent config — invoked directly |
| Logs | No persistent logs — output to terminal |
| Type | CLI tool |
| Install | apt install gawk / dnf install gawk (sed is pre-installed) |
Key Operations
| Task | Command |
|---|---|
| sed: substitute first match per line | sed 's/old/new/' file |
| sed: substitute all matches per line | sed 's/old/new/g' file |
| sed: in-place edit (GNU) | sed -i 's/old/new/g' file |
| sed: in-place with backup | sed -i.bak 's/old/new/g' file |
| sed: delete lines matching pattern | sed '/pattern/d' file |
Related skills