Im trying to rename some files and need help with formatting a proper 'sed' command;
I have a file of movie episodes that looks like this;
SG1_s10e8"Memento Mori"
SG1_s10e9"Company of Thieves"
SG1_s10e10"The Quest"
SG1_s10e11"The Quest Part 2"
and I need to pad the episode # with a '0' like this;
SG1_s10e08"Memento Mori"
SG1_s10e09"Company of Thieves"
SG1_s10e10"The Quest"
SG1_s10e11"The Quest Part 2"
I'm sure sed is the correct tool, im just not real keen with the command syntax.
I would appreciate any help.