답변:
blahblahblah | awk '{if(min==""){min=max=$1}; if($1>max) {max=$1}; if($1<min) {min=$1}; total+=$1; count+=1} END {print total/count, max, min}'
awk
패턴을 /usr/local/bin/stats
그런 식으로 넣은 다음로 사용하십시오 blabla | stats
.
이 프로그램은 명령 줄에서 숫자 목록에 대한 통계를 생성하는 데 유용합니다. http://web.cs.wpi.edu/~claypool/misc/stats/stats.html
R이 할 수있는 거의 모든 작업을 수행 할 수 있지만 키 입력은 줄이면서 더 간단합니다.
https://code.google.com/p/simple-r/
평균, 최대 및 최소를 계산하려면 다음 중 하나를 입력해야합니다.
r summary file.txt
r summary - < file.txt
cat file.txt | r summary -