I have variable which has value "abcd.txt"
.
I want to store everything before the ".txt"
in a second variable, replacing the ".txt"
with ".log"
I have no problem echoing the desired value:
a="abcd.txt"
echo $a | sed 's/.txt/.log/'
But how do I get the value "abcd.log"
into the second variable?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…