cash
is a command line tool to cache program output so you can grep/awk/whatever without polluting local dir.
``` $ cash find / #this caches the output
$ cash | grep 'xyz' #this pipes output to grep ```
Requires cargo.
$ cargo build --release
$ sudo ln -s $(pwd)/target/release/cash /usr/local/bin/cash
This can be used to name the output. Usage with this is similar to above,
``` $ cash -n test find /
$ cash -n test | grep 'xyz' ```
If you want to use a special dir for caching, use this flag. If you want to permanently use this dir then use an alias with your shell.