5 lines
50 B
Bash
Executable file
5 lines
50 B
Bash
Executable file
#!/bin/sh
|
|
while [ 1 ]; do
|
|
sleep 1
|
|
echo "a"
|
|
done
|