I want to recursively remove the

#region License
blah blah blah
blah blah blah
#endregion

text at the beginning of my .cs files. How can I do this with a bash command? Thanks!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted
 sed  '/#region License/,/#endregion/d' ploum.cs

should do the trick.

To find all .cs files in the current subdirectories and run this on them:

find ./ -name "*.cs" -execdir sed '/#region License/,/#endregion/d' '{}' \;
link|improve this answer
+1, but you don't need the backslash. (But could there be nested #region ... #endregion pairs within the License region?) – Keith Thompson Aug 23 '11 at 20:10
Thanks, huitseeker. By recursive, I mean from all files of the form *.cs – Jacko Aug 23 '11 at 20:10
OK, to get the recursion I can call find . -name *.cs | xargs sed -i '/#region\ License/,/#endregion/d' – Jacko Aug 23 '11 at 20:31
edited to apply to all cs files – huitseeker Aug 23 '11 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.