gnu-echo-rs

Crates.iognu-echo-rs
lib.rsgnu-echo-rs
version0.1.0
sourcesrc
created_at2023-07-02 21:56:14.365646
updated_at2023-07-02 21:56:14.365646
descriptionA rewrite of the echo GNU core utility in rust
homepagehttps://projects.surferlul.me/gnu-echo-rs/
repositoryhttps://github.com/Surferlul/gnu-echo-rs
max_upload_size
id906447
size32,424
Lu Baumann (Surferlul)

documentation

README

gnu-echo-rs

My rewrite of the echo GNU core utility in rust

version: 0.1.0 author: Lu Baumann

usage

refer to gnu-echo-rs --help:

Usage: gnu-echo-rs [SHORT-OPTION]... [STRING]...
  or:  gnu-echo-rs LONG-OPTION
Echo the STRING(s) to standard output. Rust rewrite of GNU echo util.

  -n             do not output the trailing newline
  -e             enable interpretation of backslash escapes
  -E             disable interpretation of backslash escapes (default)
      --help     display this help and exit
      --version  output version information and exit

If -e is in effect, the following sequences are recognized:

  \\      backslash
  \a      alert (BEL)
  \b      backspace
  \c      produce no further output
  \e      escape
  \f      form feed
  \n      new line
  \r      carriage return
  \t      horizontal tab
  \v      vertical tab
  \0NNN   byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)

testing

test script requires python >= 3.10

gnu_echo_tests/test.py -e /bin/echo -b <path/to/gnu-echo-rs>

parameter value
-e, --echo path to echo executable to test against
-b, --binary path to gnu-echo-rs binary to test
Commit count: 9

cargo fmt