Files
oam/snippets/sed.sh
2024-09-22 21:15:45 +02:00

5 lines
85 B
Bash

#!/usr/bin/env sh
# Quote whatever is not a space.
sed -E 's|([[:graph:]]+)|"\1"|g'