Crates.io | yearsfx |
lib.rs | yearsfx |
version | 0.1.0 |
source | src |
created_at | 2021-11-13 22:46:12.246378 |
updated_at | 2021-11-13 22:46:12.246378 |
description | Appends years in range to input |
homepage | |
repository | |
max_upload_size | |
id | 481555 |
size | 9,600 |
yearsfx will append years in a given range to the end of every line piped into it.
The start year is a required argument with the end year being an optional second argument, if ommitted it will be the current year.
yearsfx <start-year> [end-year]
echo "Hello World" | yearsfx 2015
Hello World2015
Hello World2016
Hello World2017
Hello World2018
Hello World2019
Hello World2020
Hello World2021
echo "test" | yearsfx 1994 2000
test1994
test1995
test1996
test1997
test1998
test1999
test2000