coreutils/util/android-scripts/collect-info.sh
2024-03-23 16:36:01 +01:00

20 lines
347 B
Bash

#!/bin/bash
# spell-checker:ignore nextest watchplus PIPESTATUS
echo "system resources - RAM:"
free -hm
echo "system resources - CPU:"
lscpu
echo "system resources - file systems:"
mount
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