10 lines
89 B
Bash
Executable File
10 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Hello world!"
|
|
|
|
echo "Press [CTRL+C] to stop.."
|
|
while :
|
|
do
|
|
sleep 1
|
|
done
|