1
我有一個文件有一個字符線替換詞,它的內容是這樣的如何在使用shell腳本
#Time value
2.5e-5 1.3
5e-5 2.7
7.5e-5 1.1
0.0001 5.9
0.000125 5.8
0.00015 3
......
我如何可以替換與字母e
在它的行(科學記數法),以便最終文件將是
#Time value
0.000025 1.3
0.00005 2.7
0.000075 1.1
0.0001 5.9
0.000125 5.8
0.00015 3
......
shell腳本能夠做到這一點嗎?
for (any word that is using scientific notation)
{
replace this word with decimal notation
}
好吧,但如何找到這些線,並將字包含'e'做這個'printf()'? – Daniel
@丹尼爾,你可以用'awk'輕鬆做到這一點。 –