Ignore lines beginning with '#' and empty lines

This commit is contained in:
Jakobus Schürz 2019-08-10 09:21:44 +02:00
parent 3627833f61
commit 59156d031c

View file

@ -54,7 +54,7 @@ do
;;
-f)
shift
MODULES=($(cat $1))
MODULES=($(cat $1 | grep -v '^#'| sed -e '/^[[:blank:]]*$/d'))
shift
;;
--)