mirror of
https://git.hush.is/hush/hush3.git
synced 2025-12-15 00:04:46 -05:00
17 lines
303 B
Bash
Executable File
17 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tools=("gcc-8" "g++-8" "otool" "nm")
|
|
|
|
echo "Platform: `uname -a`"
|
|
echo "-------------------------------------"
|
|
echo "Tool info:"
|
|
echo
|
|
for tool in "${tools[@]}"
|
|
do
|
|
echo "$tool location: `which $tool`"
|
|
echo "$tool version: `$tool --version`"
|
|
echo
|
|
echo "-------"
|
|
echo
|
|
done
|