Hi all,
I am trying to write a script for renaming some files and I can't understand how to replace a set of characters between delimiters with sed.
The current filename is:
<ID1>_<ID2>_<DATE>_<ID3>.PDF
And I need to get the following:
<ID1>_<ID2>_<DATE>_X01<ID2>.PDF
I have tried the following:
but it doesn't work. Could you please help me?
Thanks in advance.
I am trying to write a script for renaming some files and I can't understand how to replace a set of characters between delimiters with sed.
The current filename is:
<ID1>_<ID2>_<DATE>_<ID3>.PDF
And I need to get the following:
<ID1>_<ID2>_<DATE>_X01<ID2>.PDF
I have tried the following:
Code:
echo $f |cut -d'_' -f2 | read ID2
mv $f $(echo $f | sed 's/_2015*.PDF\./\X01$ID2.PDF/')
Thanks in advance.