Files
Phoenix/docker/scripts/hello.sh
2019-06-29 16:52:37 -07:00

17 lines
367 B
Bash
Executable File

#!/bin/bash
echo "Hello World, from wxPython's build container on $DIST_NAME"
echo " User: " $(whoami)
echo " ~/bin: " $(ls ~/bin)
echo " ~/venvs:" $(ls ~/venvs)
echo " /dist: " $(ls /dist)
echo ""
if [ -x /usr/bin/lsb_release ]; then
/usr/bin/lsb_release -a
fi
if [ -e /etc/redhat-release ]; then
cat /etc/redhat-release
fi
echo ""