Files
Ciro Santilli 六四事件 法轮功 ff4aaec5bc shell fork bomb classic
2019-11-12 23:00:01 +00:00

9 lines
143 B
Bash
Executable File

#!/bin/sh
# https://cirosantilli.com/linux-kernel-module-cheat#fork-bomb
if [ "$1" = danger ]; then
bomb() {
bomb | bomb &
}
bomb
fi