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
|
|
|
}
|