mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-10 14:50:57 +00:00
a4bd8f7f17
Again, it was hard to read and edit this text when it was in a string inside an echo command inside a bash script inside a heredoc inside a Ruby script wrapped in a mystery. It also gives me space to write some actual comments.
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
|