This repository has been archived on 2023-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
office/get_office.sh
2023-10-29 20:16:50 +01:00

20 lines
518 B
Bash
Executable File

#!/bin/bash -ex
# https://answers.microsoft.com/en-us/msoffice/forum/all/useful-microsoft-download-links-for-office-direct/7bcaa971-9493-44b6-a1ba-0db4c6957c47
# Office 2016 Pro Plus fr-FR
URL='https://officecdn.microsoft.com/db/492350F6-3A01-4F97-B9C0-C7C6DDF67D60/media/fr-fr/ProPlusRetail.img'
ISO=O2016PP.img
curl -C- -o "$ISO" "$URL"
echo "$ISO"
#cp -Trv "$DIR" office/ || true
#
#umount "$DIR"
#udisksctl loop-delete -b "$DEV"
#
#find office/ -type d -exec chmod 755 '{}' + -o -type f -exec chmod 644 {} +