List of utility methods to do Is Unix
| boolean | isOsUnix() Test for Unix (to include MacOS), vice Windows. return File.separator.equals(FORWARD_SLASH);
|
| boolean | isSystemUnix() is System Unix return SYS_SEPARATOR_CHAR == UNX_SEPARATOR_CHAR;
|
| boolean | isUnix() is Unix return "/".equals(File.separator); |
| boolean | isUnix() is Unix return (File.separatorChar == '/'); |
| boolean | isUnix() is Unix return (File.separatorChar == '/') || isMacOsX(); |
| boolean | isUnixCompressFile(File file) Returns true if the input file is a .Z file. return hasCaseInsensitiveSuffix(file, z_suffix);
|