CMD=„Hier kommt das rein, was ich ausfühern will. z.B. echo $line“
while IFS= read line; do $CMD; done < "DATEI"
Oder auch in einem Script:
#!/bin/bash while IFS= read line; do $CMD done < "DATEI"