6 lines
67 B
Bash
Executable File
6 lines
67 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while read pid; do
|
|
kill "$pid"
|
|
done <autostart.pids
|