4 lines
87 B
Bash
4 lines
87 B
Bash
#!/bin/bash
|
|
echo "=== Liste des utilisateurs ==="
|
|
cat /etc/dovecot/users | cut -d: -f1
|