2025-03-14 21:59:59 -06:00
|
|
|
# sd
|
|
|
|
|
|
|
|
|
|
> Intuitive find and replace.
|
|
|
|
|
> More information: <https://github.com/chmln/sd>.
|
|
|
|
|
|
2025-09-14 18:48:49 -06:00
|
|
|
- Trim some whitespace using a `regex` (output stream: `stdout`):
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
`{{echo 'lorem ipsum 23 '}} | sd '\s+$' ''`
|
|
|
|
|
|
|
|
|
|
- Replace words using capture groups (output stream: `stdout`):
|
|
|
|
|
|
|
|
|
|
`{{echo 'cargo +nightly watch'}} | sd '(\w+)\s+\+(\w+)\s+(\w+)' 'cmd: $1, channel: $2, subcmd: $3'`
|
|
|
|
|
|
|
|
|
|
- Find and replace in a specific file (output stream: `stdout`):
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sd {{[-p|--preview]}} '{{window.fetch}}' '{{fetch}}' {{path/to/file.js}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Find and replace in all files in the current project (output stream: `stdout`):
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sd '{{from "react"}}' '{{from "preact"}}' "$(find . -type f)"`
|