2
0
forked from Ivasoft/openwrt

netifd: 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:49 +02:00
parent 05afbcd14e
commit ffa3a8e9b0
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ find_irq_cpu() {
[ -n "$match" ] && {
set -- $match
shift
for cur in `seq 1 $NPROCS`; do
for cur in $(seq 1 $NPROCS); do
[ "$1" -gt 0 ] && {
cpu=$(($cur - 1))
break