Linux工程师学习笔记
时间:2006-11-03 来源:liuxingyuyuni
#!/bin/bash
echo 'please enter the total number of queries reported today.'
read totalqueries
echo 'please enter the number of queries answered.'
read answered
pending=$((totalqueries-answered))
echo "Number of calls pending =$pending";
echo 'please enter the total number of queries reported today.'
read totalqueries
echo 'please enter the number of queries answered.'
read answered
pending=$((totalqueries-answered))
echo "Number of calls pending =$pending";
相关阅读 更多 +