10 lines
114 B
Bash
10 lines
114 B
Bash
#!/bin/sh
|
|
|
|
log() {
|
|
logger -t "save total" "$@"
|
|
}
|
|
|
|
total=$1
|
|
|
|
uci set custom.bwday.bwday="$total"
|
|
uci commit custom |