rust-sd 1.0.0-3 source package in Ubuntu

Changelog

rust-sd (1.0.0-3) unstable; urgency=low

  * Fix typo in description (Closes: #1069181)

 -- Blair Noctis <email address hidden>  Thu, 13 Jun 2024 22:26:59 +0000

Upload details

Uploaded by:
Rust Maintainers
Uploaded to:
Sid
Original maintainer:
Rust Maintainers
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Downloads

File Size SHA-256 Checksum
rust-sd_1.0.0-3.dsc 1.9 KiB 762d14350807b861a3f8084dfab957f84245f72f6c0b4292943b012f627de7cd
rust-sd_1.0.0.orig.tar.gz 28.7 KiB 70613c41881ca1e5b69e6bb110f2ac499739c03a151b00e41e16090974b826a8
rust-sd_1.0.0-3.debian.tar.xz 3.4 KiB 18b6eef5373127abc11feac162dab353411e8fda7c88a6cfe4b21fe5fead25b9

Available diffs

No changes file available.

Binary packages built by this source

sd: intuitive find and replace CLI

 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