mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
13 lines
223 B
Bash
13 lines
223 B
Bash
#!/bin/bash
|
|
|
|
# spell-checker:ignore nextest watchplus PIPESTATUS
|
|
|
|
echo "$HOME"
|
|
PATH=$HOME/.cargo/bin:$PATH
|
|
export PATH
|
|
echo "$PATH"
|
|
pwd
|
|
command -v rustc && rustc -Vv
|
|
ls -la ~/.cargo/bin
|
|
cargo --list
|
|
cargo nextest --version
|