#!/usr/bin/perl open LIST, "<","textdatei.txt" or die $!; while () { s/\\n/\n/g; print; } close LIST;