[linux] 數值補0及計算

數值補0

ii=7;

i=$(printf "%02d" $ii);


數值計算

ist=$(($i * 5 + 3))

留言