I want to script the download of a file without having to enter tftp's command prompt. I've found that I can sort of achieve this with a here-document:
tftp 192.168.1.2 69 << _EOF_
get testfile
quit
_EOF
But I was hoping for something simpler, and closer to something as follows:
wget 192.168.1.2:69:/tftpboot/testfile