1. 程式人生 > >shell指令碼之九九乘法表

shell指令碼之九九乘法表

指令碼內容:

#!/bin/bash for i in seq 9 do for j in seq $i do echo -n “ii*j=$[j*i]” done echo done