if (SystemUtils.IS_OS_UNIX) {
command = String.format("ping -c %s 127.0.0.1", sleepInSeconds);
} else {
command = String.format("ping -n %s 127.0.0.1", sleepInSeconds);
}
return new ExecuteCommand(command, new File(System.getProperty("user.dir"))).getProcessBuilder();
}