1 个不稳定版本
0.1.0 | 2021年10月23日 |
---|
#242 在 缓存
5KB
60 行
金钱(钱,百万富翁)
cash
是一个命令行工具,用于缓存程序输出,这样您就可以使用 grep/awk/等等而不会污染本地目录。
用法
$ cash find / #this caches the output
# output
$ cash | grep 'xyz' #this pipes output to grep
构建
需要 cargo。
$ cargo build --release
$ sudo ln -s $(pwd)/target/release/cash /usr/local/bin/cash
参数
-n <name>
可以使用此选项命名输出。使用方式与上面类似,
$ cash -n test find /
# output
$ cash -n test | grep 'xyz'
-d <dir>
如果您想为缓存使用特殊目录,请使用此标志。如果您想永久使用此目录,请使用 shell 的别名。