replace a string in a file with ant that is contained in a gzip file
How do I replace, with ant, a string in a file that is contained in a gzipped file开发者_如何学Go? Ed
The way you eat an elephant, one bite at at time:
- Extract the file from gzip.
- Copy file to new location in the process replacing the string (use filterset for this).
- Update gzip with the updated file.
精彩评论