2 个版本
0.1.1 | 2023年6月13日 |
---|---|
0.1.0 | 2023年6月13日 |
#7 in #ps
6KB
91 行
$ cargo run -- 被搜索关键字 example-filename.txt
$ cargo run -- to poem.txt
携带环境变量
IGNORE_CASE=1 cargo run -- to poem.txt
如果你使用 PowerShell,则需要用两个命令来分别设置环境变量并运行程序:
PS> $Env:IGNORE_CASE=1; cargo run to poem.txt
在 Windows 上
set RUST_BACKTRACE=1
tauri dev
只有标准输出会输出到 output.txt 文件;标准错误输出(eprintln!),则不会。
cargo run > output.txt