Modifying files nested in tar archive
问题 I am trying to do a grep and then a sed to search for specific strings inside files, which are inside multiple tars, all inside one master tar archive. Right now, I modify the files by First extracting the master tar archive. Then extracting all the tars inside it. Then doing a recursive grep and then sed to replace a specific string in files. Finally packaging everything again into tar archives, and all the archives inside the master archive. Pretty tedious. How do I do this automatically