8 lines
97 B
Bash
8 lines
97 B
Bash
#!/bin/bash
|
|
pid=`pidof CyUSBSerialTestUtility`
|
|
|
|
if [ "$pid" ]; then
|
|
kill -s SIGUSR1 $pid
|
|
fi
|
|
|