Gast
#1427029
hello peoples, Assume a file containing a list of filenames. $cat list ein langer sommerabend.txt some other file Now, I want to copy them all at once and write therefor a loop like this $for i in $(cat list); do cp $i newdir; done Obviuosly I am running into the "whitespace in a filename" problem which I don't know how to solve. Does have somebody an advice or a working solution for me? Best regards, Daniel