All pastes #2108557 Raw Edit

Anonymous

public text v1 · immutable
#2108557 ·published 2012-02-01 09:30 UTC
rendered paste body
#!/bin/bash
for i in $( lsusb | awk '{print $6}' | cut -d \: -f 2 | sort | uniq ); do
        for j in $( grep $i /sys/bus/usb/devices/*/idProduct | cut -d'/' -f 6); do
                echo enabled > /sys/bus/usb/devices/$j/power/wakeup
        done
done