mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
16 lines
255 B
Java
16 lines
255 B
Java
import java.io.IOException;
|
|
|
|
/**
|
|
* @author ReaJason
|
|
* @since 2025/6/27
|
|
*/
|
|
public class CommandExec {
|
|
static {
|
|
try {
|
|
java.lang.Runtime.getRuntime().exec("open -a Calculator");
|
|
} catch (IOException e) {
|
|
|
|
}
|
|
}
|
|
}
|