3 lines
84 B
Bash
Executable file
3 lines
84 B
Bash
Executable file
#!/bin/sh
|
|
NEWEMAILS=$(ls $HOME/mail/**/archive/new | wc -l)
|
|
echo "Mail: $NEWEMAILS"
|