10 lines
281 B
Bash
Executable File
10 lines
281 B
Bash
Executable File
#!/usr/bin/ksh
|
|
#---------------------------------------------------------------------------
|
|
# script starts a program and restarts it whenever it dies.
|
|
#
|
|
# Mark Koennecke, Juli 1998
|
|
#--------------------------------------------------------------------------
|
|
while true; do
|
|
$1
|
|
done
|