不足位數,補0

常常在使用shell script會用到日期檔名
而這時候通常月份、日期都是兩位數的顯示方式
例如2013/6/4就必須要變成”20130604″
這時候就可以使用awk來輔助

str=`echo $i|awk '{printf "%02d", $1}'`
echo $str;

註:awk後面有空格唷

This entry was posted in Linux. Bookmark the permalink.