Returns the base URI and the contents for the specified command script. @param input input @return return input path and content @throws IOException I/O exception
(final String input)
| 160 | * @throws IOException I/O exception |
| 161 | */ |
| 162 | protected static Entry<String, String> script(final String input) throws IOException { |
| 163 | final IO io = IO.get(input); |
| 164 | return new SimpleEntry<>(io.path(), io.readString()); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Indicates if the specified string points to an existing file. |