9 lines
148 B
Bash
9 lines
148 B
Bash
#!/bin/sh
|
|
# $YakumoLabs$
|
|
echo "Checking if there is any mail..."
|
|
env fdm -a "$@" poll
|
|
if [ $? -ne 0 ]; then
|
|
echo "Sorry, I couldn't..."
|
|
exit 1
|
|
fi
|