Help for this page

Select Code to Download


  1. or download this
    print "File is binary\n" if (-B);
    print "File is a text file\n" if (-T);
    
  2. or download this
    print "File is binary\n" if (!-T);
    print "File is a text file\n" if (!-B);