1
0
Fork 0
cloudcatcher/cloudcatcher.sh

25 lines
382 B
Bash
Executable File

#!/usr/bin/env bash
### Settings ###
logo_filename="logo.txt";
info_filename=$(mktemp --suffix -cloudcatcher);
if [ -f .cloudcatcher_settings ]; then
source .cloudcatcher_settings;
fi
################
cloudcatcher-info.sh >${info_filename}
### Output ###
echo
pr -mtJ ${logo_filename} ${info_filename};
##############
### Cleanup ###
rm "${info_filename}"
###############