in reply to How to upload file from Linux to Sharepoint using Perl

Seems like it would be easier to just create a cron job to schedule a daily curl call.

To edit your cron jobs, use: crontab -e. Adding something like the following should upload your file every morning at 5AM:

00 5 * * * /usr/bin/curl --ntlm -u <your Active-Directory-Domain>/<you +r-domain-username> -T /path/to/xyz.txt http://sharepoint.url.com/doc/ +library/dir/

Replies are listed 'Best First'.
Re^2: How to upload file from Linux to Sharepoint using Perl
by vvrao_2000 (Initiate) on Feb 22, 2016 at 19:53 UTC
    curl --ntlm -u domain/userid:passwd -T <file> "sharepoint URL"
Re^2: How to upload file from Linux to Sharepoint using Perl
by Anonymous Monk on Feb 22, 2016 at 19:39 UTC
    simpe one curl --ntlm -u domain/userid:passwd -T <file> "sharepoint URL"