A messenger application for Raspberry Pi Zerofor A.U.TH (Real time Embedded systems).
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #! /bin/bash
-
- for AEM in 7700 8261 8765 8844 8880 8861 8877 8941 8934 8997; do
- echo I have send $(grep -e "Out dev=$AEM" output.txt| wc -l) messages to $AEM
- echo I have received $(grep -e "In dev=$AEM" output.txt| wc -l) messages from $AEM
-
- # bad!! Pi0
- echo I have echo-back $(grep -e "Out dev=$AEM, message: from=$AEM" output.txt| wc -l) messages to $AEM
- done
|