Runs commands using the supplied shell, and returns the output, or null in case of errors. @deprecated This method is deprecated and only provided for backwards compatibility. Use Pool's method instead. If #isRedirectDeprecated() is true (default), these calls are now autom
(@NonNull String shell, @NonNull String[] commands, boolean wantSTDERR)
| 132 | * @return Output of the commands, or null in case of an error |
| 133 | */ |
| 134 | @Nullable |
| 135 | @Deprecated |
| 136 | @WorkerThread |
| 137 | public static List<String> run(@NonNull String shell, @NonNull String[] commands, boolean wantSTDERR) { |
| 138 | return run(shell, commands, null, wantSTDERR); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * <p> |
no test coverage detected