mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-24 01:26:43 +07:00
6 lines
117 B
Bash
6 lines
117 B
Bash
#!/bin/sh
|
|
case "$2" in
|
|
up) /sbin/iwconfig $1 power off || true ;;
|
|
down) /sbin/iwconfig $1 power on || true ;;
|
|
esac
|