9 lines
161 B
Bash
Executable file
9 lines
161 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Admin only wrapper script for echo
|
|
# Example for MM Shell Bot
|
|
|
|
if [ "$SENDER" == "$ADMIN" ]; then
|
|
# shellcheck disable=SC2048,SC2086
|
|
echo $*
|
|
fi
|