5 lines
84 B
Bash
5 lines
84 B
Bash
|
#!/bin/sh
|
||
|
if [ ! -z "$PANEL_FIFO" ]; then
|
||
|
printf '%s\n' "$1" > "$PANEL_FIFO"
|
||
|
fi
|