blob: 17d54b92c123b8aa24a31be73f502285eb8ede4d (
plain)
1
2
3
4
5
6
7
8
9
10
|
new Worker("data:,setTimeout(() => Deno.exit(2), 200)", { type: "module" });
try {
await new Deno.Command("ps", {
stdout: "inherit",
stderr: "inherit",
}).output();
} catch {
Deno.exit(0);
}
|