Print the last line on which a substitution was made.
Examples
1,10s/yes/no/gSubstitute on first 10 lines
:%s/[Hh]ello/Hi/gcConfirm global substitutions
:s/Fortran/\U&/ 3Uppercase first instance of "Fortran" on next three lines
:g/^[0-9][0-9]*/s//Line &:/For every line beginning with one ormore digits, add the "Line" and a colon