Exim/commands/exim_forwardlist.sh

8 lines
109 B
Bash
Raw Normal View History

2016-10-07 09:15:13 +00:00
#!/usr/bin/env bash
DIR=/etc/exim4/forward
for file in "$DIR/*"
2016-10-07 09:15:13 +00:00
do
echo "$file: $(cat $DIR/$file)"
done