class Program { public static void main(String args[]) throws Exception { String[] cmd = {"beep", "-f", "4000"}; Runtime.getRuntime().exec("beep -f 4000").waitFor(); } }