Allow images to be extracted from StuffIt, tarball, gzip, and 7z archives

This commit is contained in:
nucleogenic
2022-08-12 04:19:02 +01:00
parent a523e1febe
commit b5e6438a45
13 changed files with 438 additions and 127 deletions

View File

@@ -25,6 +25,11 @@ if ! command -v unzip &> /dev/null ; then
echo "Run 'sudo apt install unzip' to fix."
ERROR=1
fi
if ! command -v unar &> /dev/null ; then
echo "unar could not be found"
echo "Run 'sudo apt install unar' to fix."
ERROR=1
fi
if [ $ERROR = 1 ] ; then
echo
echo "Fix errors and re-run ./start.sh"