-
-
Save ngocnguyenth/48ba4f34120c94533e735c5c7d564819 to your computer and use it in GitHub Desktop.
comment and uncomment lines in bash script via sed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sed -i '/<pattern>/s/^/#/g' file #comment | |
sed -i '/<pattern>/s/^#//g' file #uncomment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment