Crates.io | append-if |
lib.rs | append-if |
version | 0.1.0 |
source | src |
created_at | 2022-09-04 05:45:27.787794 |
updated_at | 2022-09-04 05:45:27.787794 |
description | A CLI utility for appending text to files based on simple conditional logic about the contents of those files. Particularly useful for appending text to .bashrc and other places without accidentally appending the same thing multiple times. |
homepage | |
repository | https://github.com/sam0x17/append-if |
max_upload_size | |
id | 658145 |
size | 13,348 |
A CLI utility for appending text to files based on simple conditional logic about the contents of those files. Particularly useful for appending text to .bashrc and other places without accidentally appending the same thing multiple times.
cargo install append-if
append-if --mode missing --path ~/.bashrc --pattern '$HOME/.rvm/bin' --append '
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
'
$ append-if --help
append-if 0.1.0
A utility for appending text to files based on simple conditional logic. Designed to be highly
useful in shell scripts
USAGE:
append-if [OPTIONS] --path <PATH> --append <APPEND>
OPTIONS:
-a, --append <APPEND> Text to append to the end of the file if conditions are met
-c, --check-path <CHECK_PATH> Path of the file to check. Defaults to path
-h, --help Print help information
-m, --mode <MODE> Mode used for conditional logic. Choices are 'missing',
'present', or 'always' [default: Missing]
-p, --path <PATH> Path of the file you want to append to
--pattern <PATTERN> Pattern to match against. Defaults to what we are appending.
Can be a string or regular expression. If an invalid regular
expression is provided, the input will be treated as a string
we are searching for in the target file
-v, --verbose Flag to enable verbose output
-V, --version Print version information