1
0
Fork 0
cloudcatcher/cloudcatcher.sh

25 lines
384 B
Bash
Raw Normal View History

#!/usr/bin/env bash
### Settings ###
logo_filename="logo.txt";
info_filename=$(mktemp --suffix -cloudcatcher);
2018-01-03 19:09:34 +00:00
if [ -f .cloudcatcher-settings ]; then
source .cloudcatcher-settings;
fi
################
2018-01-03 19:09:34 +00:00
./cloudcatcher-info.sh >${info_filename}
### Output ###
echo
pr -mtJ ${logo_filename} ${info_filename};
##############
### Cleanup ###
rm "${info_filename}"
###############