nixos/pdns: Fix file records content with spaces
This commit is contained in:
parent
57f3bbe794
commit
2037dca766
@ -91,11 +91,13 @@ let
|
|||||||
}
|
}
|
||||||
|
|
||||||
add() {
|
add() {
|
||||||
if [ $# -ne 2 ]; then
|
if [ $# -lt 2 ]; then
|
||||||
usage
|
usage
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$2" >> "$dir"/"$1"txt
|
file="$dir"/"$1"txt
|
||||||
|
shift
|
||||||
|
echo "$@" >> "$file"
|
||||||
}
|
}
|
||||||
del() {
|
del() {
|
||||||
if [ $# -lt 1 ]; then
|
if [ $# -lt 1 ]; then
|
||||||
@ -106,7 +108,8 @@ let
|
|||||||
if [ $# -eq 1 ]; then
|
if [ $# -eq 1 ]; then
|
||||||
rm "$file"
|
rm "$file"
|
||||||
else
|
else
|
||||||
sed -i "/^""$2""$/!{q1}; /^""$2""$/d" "$file"
|
shift
|
||||||
|
sed -i "/^""$*""$/!{q1}; /^""$*""$/d" "$file"
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user