tdrip

Crates.iotdrip
lib.rstdrip
version0.1.0
sourcesrc
created_at2023-09-02 05:53:00.128263
updated_at2023-09-02 05:53:00.128263
descriptiontdrip is a command-line tool to easily remove headers and metadata from text.
homepagehttps://github.com/akihisa1210/tdrip
repositoryhttps://github.com/akihisa1210/tdrip
max_upload_size
id961553
size11,078
Akihisa Koyama (akihisa1210)

documentation

README

tdrip

tdrip is a command-line tool to easily remove headers and metadata from text.

Usage

$ cat example.txt
This is the example text.
TODO This line will be removed.
FIXME This line will be removed.
HACK: This line will be removed.
NOTEThis line will be removed.
This line will not be removed. TODO

$ tdrip example.txt
This is the example text.
This line will not be removed. TODO

What lines are removed?

The lines starts with the following annotations.

  • FIXME
  • HACK
  • NOTE
  • TODO
  • XXX
Commit count: 9

cargo fmt