Asked
Updated
Viewed
30.4k times

I'm using telnet to remote into a local FreeBSD server and I need to transfer a file to the server so I can unpack and install it, however I'm unsure on how to get the file onto the server.

Is there a program installed by default with FreeBSD that has the equivalent abilities of WGET?

add a comment
1

2 Answers

  • Votes
  • Oldest
  • Latest
Answered
Updated

For an outdated system that can not update with pkg commands to obtain a port of wget, luckily fetch is built in to the FreeBSD system. Here is an example using fetch to download a file:

fetch https://www.domain.tld/file.ext
add a comment
1
Answered
Updated

Yeah, it's called wget.

Look for the ports collection install located at: /usr/ports/www/wget

  • 0
    I'll have to see if thats there, thanks 😂 — AnarchY SI
add a comment
1