Browse Source

improved newline handline

main
deicidus 1 year ago
parent
commit
7f5862a955
  1. 4
      spells/menu/bitcoin/configure-bitcoin

4
spells/menu/bitcoin/configure-bitcoin

@ -44,7 +44,9 @@ fi
modify_bitcoin_conf() { modify_bitcoin_conf() {
local key=$1 local key=$1
local value=$2 local value=$2
awk -v key="$key" -v value="$value" 'BEGIN {found=0} !/^#/ && $1==key {found=1; print key"="value; next} {print} END {if (!found) print key"="value; print ""}' "$bitcoin_conf" > "$bitcoin_conf.tmp" && mv "$bitcoin_conf.tmp" "$bitcoin_conf" || retry_with_sudo mv "$bitcoin_conf.tmp" "$bitcoin_conf" printf "%s\n" >> "$bitcoin_conf" # Ensure a newline exists at the end of the file
awk -v key="$key" -v value="$value" 'BEGIN {found=0} !/^#/ && $1==key {found=1; print key"="value; next} {print} END {if (!found) print key"="value}' "$bitcoin_conf" > "$bitcoin_conf.tmp" && mv "$bitcoin_conf.tmp" "$bitcoin_conf" || retry_with_sudo mv "$bitcoin_conf.tmp" "$bitcoin_conf"
awk '/./' "$bitcoin_conf" > "$bitcoin_conf.tmp" && mv "$bitcoin_conf.tmp" "$bitcoin_conf" || retry_with_sudo mv "$bitcoin_conf.tmp" "$bitcoin_conf" # Remove trailing newlines
} }
# Pruning question and storage amount # Pruning question and storage amount

Loading…
Cancel
Save