## shell第二天记录
grep -a '14:0[0-9]' .ros/xx.log #日志过滤关键时间段
tail -f .ros/xx.log #实时刷新最后一行log
tail -n 300 ./ros/xx.log #查看最后300行
watch -n 0.5 tail -n 30 .ros/cv_qr/cv_qr.log #五秒刷一次log
## shell第二天记录
grep -a '14:0[0-9]' .ros/xx.log #日志过滤关键时间段
tail -f .ros/xx.log #实时刷新最后一行log
tail -n 300 ./ros/xx.log #查看最后300行
watch -n 0.5 tail -n 30 .ros/cv_qr/cv_qr.log #五秒刷一次log