fix forward list

This commit is contained in:
Michel Roux 2016-10-10 16:44:24 +02:00 committed by Michel Roux
parent 7f72dffec4
commit a2edde9943
1 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,6 @@
#!/usr/bin/env bash
DIR=/etc/exim4/forward
for file in "$DIR/*"
for file in /etc/exim4/forward/*
do
echo "$file: $(cat $DIR/$file)"
echo "$(basename $file) -> $(cat $file)"
done