File: debcargo.toml

package info (click to toggle)
rust-sd 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: sh: 51; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
overlay = "."
uploaders = ["Blair Noctis <n@sail.ng>"]

collapse_features = true

[source]
section = "utils"

[packages.bin]
summary = "intuitive find and replace CLI"
description = """
sd uses Python and JavaScript style regex syntax, without the quirks
of sed and awk. While sed can do many things, sd focuses on doing
one thing and doing it well, has common-sense defaults and a focus
on daily use. It's also faster.

- Find and replace expressions are separate, unlike sed:
  sd before after
  sed s/before/after/g
- Modify files in-place:
  sd before after file.txt
  sed -i'' 's/before/after/g' file.txt
- String-literal mode
- Named or unnamed catch groups
"""