诸暨麻将添加redis
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

16 行
329 B

  1. #!/usr/bin/env perl
  2. # Check that given arguments do not exist on filesystem.
  3. my $code = 0;
  4. if ($#ARGV < 0) {
  5. print "Usage: $0 file1 [fileN]\n";
  6. exit 2;
  7. }
  8. while (@ARGV) {
  9. my $fname = shift @ARGV;
  10. if (-e $fname) {
  11. print "Found '$fname' when not supposed to exist.\n";
  12. $code = 1;
  13. }
  14. }
  15. exit $code;