Android 批处理命令发送

#/bin/sh

awk -F' ' '

BEGIN{


}

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

END{

}

' $1

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

编程技巧