mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-11 15:20:58 +00:00
9 lines
289 B
Bash
9 lines
289 B
Bash
|
# Displays the installed versions of Rust and Cargo.
|
|||
|
# This gets run from ‘dev-bash.sh’, which gets run from ‘~/.bash_profile’, so
|
|||
|
# the versions gets displayed after the help text for a new Vagrant session.
|
|||
|
|
|||
|
echo -e "\\033[4mVersions\\033[0m"
|
|||
|
rustc --version
|
|||
|
cargo --version
|
|||
|
echo
|