in reply to MANIFEST with spaces in filenames?
It looks like anything after the first set of spaces is considered a comment.my($file, $comment) = /^(\S+)\s*(.*)/;
If there was some way to represent a file with spaces using escape sequences (eg \x20, \040 ...) that would make this command open a file then it should work.open(F,"< $from\0") or die "Can't read $from: $!\n";
|
|---|