bat
drip-rs exec FILE_PATH [ARGS...]
drip-rs misc CMD [ARGS...]
drip-rs {-h|--help|help}
drip-rs {-V|--version}
cargo install
bat
$ cargo install drip-rs
bat
$ git clone https://github.com/nullputra/drip-rs
$ cd drip
$ cargo build --release
```bat
$ cargo install drip $ drip-rs -V drip-rs 1.0.0 ```
drip-rs -h
```bat
$ drip-rs -h drip-rs 1.0.0 Nullputra stdnlptr@gmail.com
USAGE:
drip.exe
OPTIONS: -h, --help Print help information -V, --version Print version information
SUBCOMMANDS: exec Execute scripts according to extension help Print this message or the help of the given subcommand(s) misc Running scripts independent of extension ```
drip-rs exec
```bat
$ cat drip.toml symbol = ">"
[exec] cpp = [ "g++ -g -O2 -std=c++17 -W $FILEPATH -o $FILEPATHWITHOUTEXT", "$FILEPATHWITHOUTEXT", ] py = { cmd = "py -3 $FILEPATH", sh = "python3 $FILE_PATH" }
$ drip-rs exec tests\data\fft.py scrs: "py -3 tests\data\fft.py" args: []
py -3 tests\data\fft.py 1 4 11 26 36 40 32
$ drip-rs exec tests\data\z-algorithm.cpp scrs: ["g++ -g -O2 -std=c++17 -W tests\data\z-algorithm.cpp -o tests\data\z-algorithm", "tests\data\z-algorithm"] args: []
g++ -g -O2 -std=c++17 -W tests\data\z-algorithm.cpp -o tests\data\z-algorithm tests\data\z-algorithm z-algorithm works ```
drip-rs misc
```bat
$ cat drip.toml symbol = ">"
[envvar] COMMITMSG = "Fix src\main.rs"
[misc] echo = "echo $0"
echo_confirm = { common = "echo $0", confirm = true }
echo2 = ["echo $0", "echo $1"] push = { common = [ "git add --all", 'git commit -m "$COMMIT_MSG"', "git push origin master", ], confirm = true }
$ drip-rs misc echo arg0 scrs: "echo arg0" args: ["arg0"]
echo arg0 arg0
$ drip-rs misc echo_confirm arg0 scrs: "echo arg0" args: ["arg0"] Continue? y
echo arg0 arg0
$ drip-rs misc echo2 arg0 arg1 scrs: ["echo arg0", "echo arg1"] args: ["arg0", "arg1"]
echo arg0 arg0 echo arg1 arg1
$ drip-rs misc push scrs: ["git add --all", "git commit -m "Fix src\main.rs"", "git push origin master"] args: [] Continue? n Error: Aborted ```
```bat
$ git clone https://github.com/nullputra/drip-rs $ cd drip-rs $ cargo run -- exec tests\data\fft.py scrs: "py -3 tests\data\fft.py" args: []
py -3 tests\data\fft.py 1 4 11 26 36 40 32 ```
sharkdp/fd
Peltoche/lsd
BurntSushi/ripgrep
Licensed under [CC0 1.0] (no credit needed).