mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
fc3999288a
Command-line tool for controlling GEMBIRD SiS-PM USB-controlled power strips. Changelog: https://sourceforge.net/p/sispmctl/news/ Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
12 lines
202 B
Bash
12 lines
202 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
sispmctl)
|
|
# Help output works without a USB device connected
|
|
sispmctl -? 2>&1 | grep -qiF "sispmctl"
|
|
;;
|
|
libsispmctl)
|
|
ls /usr/lib/libsispmctl.so.* > /dev/null
|
|
;;
|
|
esac
|