shell script expr example的相關文章
shell script expr example的相關商品

linux - Verbose output of shell script - Stack Overflow
瀏覽:1388
日期:2025-04-27
These will demonstrate 'eval' and 'set' to do what you want: a.sh #!/bin/sh clear i=-20 while [ ${i} -lt 20 ]; do echo "Nice value is $i" cmd="nice -n $i ./app1" echo ${cmd} eval ${cmd} i=`expr ${i} + 1` done b.sh #!/bin/sh clear i=-20 ......看更多