2024-09-30 21:52:15 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2024-10-31 19:07:20 +00:00
|
|
|
. ../../common-script.sh
|
2024-09-30 21:52:15 +01:00
|
|
|
|
|
|
|
installPdfstudio() {
|
|
|
|
if ! command_exists pdfstudio2024; then
|
|
|
|
printf "%b\n" "${YELLOW}Installing PDF Studio...${RC}"
|
|
|
|
curl -O https://download.qoppa.com/pdfstudio/PDFStudio_linux64.sh
|
|
|
|
"$ESCALATION_TOOL" chmod +x PDFStudio_linux64.sh
|
|
|
|
if sh PDFStudio_linux64.sh; then
|
|
|
|
printf "%b\n" "${GREEN}PDF Studio installed successfully!${RC}"
|
|
|
|
else
|
|
|
|
printf "%b\n" "${RED}PDF Studio installation failed!${RC}"
|
|
|
|
fi
|
|
|
|
rm PDFStudio_linux64.sh
|
|
|
|
else
|
|
|
|
printf "%b\n" "${GREEN}PDF Studio is already installed.${RC}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
checkEnv
|
|
|
|
checkEscalationTool
|
|
|
|
installPdfstudio
|