environment : centos7.9
I want to create a file as a shared link in pydio core 6.0.2 and receive it through wget in the terminal. If you make a file a share link, it will look like this. http://myip/webhard/data/public/639c7a.php This is how I tried. wget http://myip/webhard/data/public/639c7a.php (down x)
wget --user=user --password=passwd wget http://myip/webhard/data/public/639c7a.php (down x)
wget --user user --password passwd http://myip/webhard/data/public/639c7a.php (down x)
wget --user user --password passwd http://myip/webhard/data/public/639c7a.php (down x)
wget http://user:passwd@myip/webhard/data/public/639c7a.php (down x)
I don't know why the extension comes out as php. And I want to know how to get it with wget.