tftp 批量上传小脚本

#! /bin/sh


for name in `find -name "*.so"`

do 

    echo "$name"

    tftp -p -r $name serverip

done

你可能感兴趣的:(小技巧,小脚本)