5 lines
85 B
Bash
Executable File
5 lines
85 B
Bash
Executable File
#!/bin/sh
|
|
# A script that deletes itself
|
|
|
|
rm "$(echo $0 | awk -F '/' '{print $NF}')"
|