mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
12 lines
342 B
Bash
12 lines
342 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
|
||
|
#
|
||
|
# This is free software, licensed under the MIT License.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
for N in $(ls /sys/class/net/ 2>/dev/null | grep eth); do
|
||
|
echo "set ${N} wol g"
|
||
|
/usr/bin/ethtool -s "${N}" wol g
|
||
|
done
|