Androidパッチコマンド処理を発送する
#/bin/sh
awk -F’ ' '
BEGIN{
}
{
print $1″0″ > “out";
}
END{
}
' $1
while read -r line
do
echo $line;
done < out
Coding Changes the World
#/bin/sh
awk -F’ ' '
BEGIN{
}
{
print $1″0″ > “out";
}
END{
}
' $1
while read -r line
do
echo $line;
done < out