I’m having a problem downloading a xampp file using wget and choosing to change the filename, but it doesn’t work, can anyone help me?
this is command:
enter image description here
I tried a few similar articles but it didn’t work
I’m having a problem downloading a xampp file using wget and choosing to change the filename, but it doesn’t work, can anyone help me?
this is command:
enter image description here
I tried a few similar articles but it didn’t work
2
Answers
Why not just use
wget
to download and then usemv
to rename it?BTW, in your case, the key issue is that you use the wrong download url. You should use the download url that appeared here:
click to see
So, it should be as follows in your case:
According to
wget
man page you instructedwget
towhilst you actually want to
i.e. you need to alter
-o
(dash followed by lowercase o) to-O
(dash followed by uppercase O).