p4raw-id: //depot/perl@11963
platforms remove just the most recent version, too). The portable
idiom to remove all the versions of a file is
- 1 while unlink "file" or die $!;
+ 1 while unlink "file";
This will terminate if the file is undeleteable for some reason
(protected, not there, and so on).