Hi,
Now I have a fully functional Nextcloud setup (to sum up: Nextcloud as linuxserver Docker add-on on Libreelec with a shared external storage), I would like to be able to automatically save my calendars on a daily basis. I have found a script made on that purpose, but it doesn't seem to be adapted to my setup. It asks for mariadb-client package to be installed, which I don't really understand.
Moreover, I have found some commands using wget, but it requires to login to my Nextcloud account, however wget in Libreelec (from Busybox) does not accept any authentification parameter:
Code
		
					
				BusyBox v1.31.0 (2020-03-03 16:31:30 EST) multi-call binary.
Usage: wget [-c|--continue] [--spider] [-q|--quiet] [-O|--output-document FILE]
[-o|--output-file FILE] [--header 'header: value'] [-Y|--proxy on/off]
[-P DIR] [-S|--server-response] [-U|--user-agent AGENT] [-T SEC] URL...
Retrieve files via HTTP or FTP
--spider        Only check URL existence: $? is 0 if exists
-c              Continue retrieval of aborted transfer
-q              Quiet
-P DIR          Save to DIR (default .)
-S              Show server response
-T SEC          Network read timeout is SEC seconds
-O FILE         Save to FILE ('-' for stdout)
-o FILE         Log messages to FILE
-U STR          Use STR for User-Agent header
-Y on/off       Use proxy
	
			Display More
	Could you please help me finding the right command for my setup?
Thanks.