1
0
Fork 0
bin/recvdir

13 lines
332 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$#" -ne 2 ]; then
echo Recieve an entire directory from the network and save it to the current directory.
echo Shows recieving progress via pv. Note that the progress indicator is before compression has been removed.
echo Usage:
echo " recvdir ip_address port"
exit
fi
nc $1 $2 | pv | tar xzf -