mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
24 lines
675 B
Bash
24 lines
675 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
. ../common-script.sh
|
||
|
|
||
|
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
|