coreutils/util/android-scripts/collect-info.sh

21 lines
347 B
Bash
Raw Normal View History

2024-02-03 16:08:39 +00:00
#!/bin/bash
# spell-checker:ignore nextest watchplus PIPESTATUS
2024-03-14 18:56:27 +00:00
echo "system resources - RAM:"
free -hm
echo "system resources - CPU:"
lscpu
echo "system resources - file systems:"
mount
2024-02-03 16:08:39 +00:00
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