mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
8 lines
187 B
Bash
8 lines
187 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Quote whatever is not a space
|
|
sed -E 's|([[:graph:]]+)|"\1"|g'
|
|
|
|
# Delete 5 lines after a pattern (including the line with the pattern)
|
|
sed '/pattern/,+5d' 'file.txt'
|