5 lines
103 B
Bash
Executable File
5 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
# A script that kills the process that's executing it, i.e. itself
|
|
|
|
pkill "$(basename "$0")"
|