mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 13:40:51 +07:00
49991224b6
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
12 lines
342 B
Bash
Executable File
12 lines
342 B
Bash
Executable File
#!/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 |