This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-11-18 15:32:09 -08:00
|
|
|
#!/bin/bash
|
2020-12-03 20:48:04 -08:00
|
|
|
function comment() {
|
|
|
|
[[ $# -lt 2 ]] && echo must supply pattern and file && return 1
|
|
|
|
sed -i '/'$1'/s/^#*/#/g' "$2"
|
2020-11-18 15:32:09 -08:00
|
|
|
}
|
|
|
|
|
2020-12-03 20:48:04 -08:00
|
|
|
function uncomment() {
|
|
|
|
[[ $# -lt 2 ]] && echo must supply pattern and file && return 1
|
|
|
|
sed -i '/'$1'/s/^#*//g' "$2"
|
2020-11-18 15:32:09 -08:00
|
|
|
}
|