mac80211: replace backticks by $(...)

This replaces deprecated backticks by more versatile $(...) syntax.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler
2020-05-10 16:47:48 +02:00
parent 4202459541
commit 05afbcd14e
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ get_next() {
done | tail -n1
}
CUR=`get_next`
CUR=$(get_next)
CUR="${CUR:-$BASE}"
while [ -n "$1" ]; do