模拟 shell 写日志

1.writeLog.sh

for i in $(seq 1 10000)
do
d=$(date +%Y%m%d%H%M)
echo "$d""--------$i">>/home/test/test.txt
done

你可能感兴趣的:(模拟 shell 写日志)