所以我正在做的是做一個腳本來讀取我的輸入文件,並做相應的東西。字符串格式的前導零 - UNIX腳本
我的輸入文件被髮送到我的格式如下:
ID QTY
xxxxxxxxx,xxx
xxxxxxxxx,xx
xxxxxxxxx,xxx
xxxxxxxxx,xx
xxxxxxxxx,xx
有時候ID只有8因爲數字是較小的數字。如果發生這種情況,我需要用前導零來格式化它。另外,我的輸入文件有數千行。
我這個至今
echo "${processNew}"
## Read the file line-by-line and output the id.
IFS=','
while read line
do
echo "%09d\n" $line
done < ${processNew}
你想格式化「xxxxxxxxx,xxx'還是'xxxxxxxxx',第一部分只? – syadav
格式化一條線就像這個xxxxxxxxx,xxx - 最後3個x是數量,可以自由選擇或多或少。 –