Show transfer like in apt-get ?

Hello.

Is that possible to see my transfer when i using pkg_add. I want to get the same effect what in Debian when i use apt-get. I mean example pkg_add -r something.tgz

Code:
# pkg_add -r wget
Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-8.0-release/Lates /wget.tbz... Done.    (and here) 372 KB/s

Is that possible using pkg_add ?
 
I think you can set these variables in /etc/make.conf to overwrite the defaults and use e.g. wget:

Code:
# FETCH_BINARY  - Path to ftp/http fetch command if not in $PATH.
#                 Default: "/usr/bin/fetch"
# FETCH_ARGS    - Arguments to ftp/http fetch command.
#                 Default: "-ApRr"
 
Back
Top