5 lines
57 B
Bash
Executable file
5 lines
57 B
Bash
Executable file
#!/bin/sh
|
|
echo $$ > pid
|
|
while true ; do
|
|
sleep 0.1s
|
|
done
|