1
0
This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

19 lines
273 B
Bash
Executable File

#!/bin/sh
vid="$1"
flags="$2"
cd /proc
echo "05 62 02:" "$vid" > switch
if [ "$#" -gt 1 ]; then
echo "05 64 04:" "$flags" > switch
echo "05 60 01:80" > switch
else
echo "05 60 01:81" > switch
fi
sleep 1
echo "05 64 04" > switch
echo "$vid: flags -> `cat switch`"