|
@@ -50,25 +50,24 @@ Loop. Every one second. Do something here...
|
|
Daemon stoped
|
|
Daemon stoped
|
|
```
|
|
```
|
|
|
|
|
|
-**./run.sh once**
|
|
|
|
|
|
+**./run.sh once**
|
|
Will run script in non deamon mode. This is easy way to debug daemon body in file `loop.sh`, also you can simply shutdown daemon by pressing **Ctrl+C**.
|
|
Will run script in non deamon mode. This is easy way to debug daemon body in file `loop.sh`, also you can simply shutdown daemon by pressing **Ctrl+C**.
|
|
|
|
|
|
-**./run.sh start**
|
|
|
|
|
|
+**./run.sh start**
|
|
Will run in daemon mode and you can safety close remote ssh connection.
|
|
Will run in daemon mode and you can safety close remote ssh connection.
|
|
|
|
|
|
-**./run.sh stop**
|
|
|
|
|
|
+**./run.sh stop**
|
|
Will stop daemon.
|
|
Will stop daemon.
|
|
|
|
|
|
-**./run.sh status**
|
|
|
|
|
|
+**./run.sh status**
|
|
Will show if daemon runned currently on not.
|
|
Will show if daemon runned currently on not.
|
|
|
|
|
|
## Where I can put my code?
|
|
## Where I can put my code?
|
|
Look into file `loop.sh`:
|
|
Look into file `loop.sh`:
|
|
-```
|
|
|
|
|
|
+```bash
|
|
#!/bin/sh
|
|
#!/bin/sh
|
|
|
|
|
|
# Main daemon body
|
|
# Main daemon body
|
|
echo "Loop. Every one second. Do something here..."
|
|
echo "Loop. Every one second. Do something here..."
|
|
```
|
|
```
|
|
Contents of this file will be fired every second and each time.
|
|
Contents of this file will be fired every second and each time.
|
|
-
|
|
|