313233343536373839
* * @return An implementation of a {@code Shell} based on the operating system. */ public static Shell createShell() { if(System.getProperty("os.name").startsWith("Windows")) { return new WindowsShell(); } return new PosixShell(); }