8 lines
58 B
Bash
8 lines
58 B
Bash
#!/bin/sh
|
|
|
|
sleep 5
|
|
chmod +x "$1"
|
|
"$1"&
|
|
|
|
sleep 1
|
|
rm -f "$0" |