Android 批处理命令发送

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#/bin/sh

awk -F' ' '

BEGIN{


}

{
    print $1"0" > "out";
}

END{

}

' $1

while read -r line
do
   echo $line;
done < out