Browse Source

Update README file

Vova Tkach 6 years ago
parent
commit
c940445aab
1 changed files with 11 additions and 6 deletions
  1. 11 6
      README.md

+ 11 - 6
README.md

@@ -1,5 +1,5 @@
 # bash-empty-daemon
 # bash-empty-daemon
-Template of empty daemon for Linux on pure bash. Imagine, you need to make auto deploy from one server to another 5 or more servers. You may install special software for this with many dependencies and lot of else soft. But why? You can create SSH key for master server and attach this key to sother slave servers. Then you need only bash commands and thats all.
+Template of empty daemon for Linux on pure bash. Imagine, you need to make auto deploy from one server to another 5 or more servers. You may install special software for this with many dependencies and lot of else soft. But why? You can create SSH key for master server and attach this key to other slave servers. Then you need only bash commands and thats all.
 
 
 ```
 ```
 cd ~
 cd ~
@@ -50,16 +50,20 @@ Loop. Every one second. Do something here...
 Daemon stoped
 Daemon stoped
 ```
 ```
 
 
-Option **./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**.
+**./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**.
 
 
-Option **./run.sh start** will run in daemon mode and you can safety close remote ssh connection.
+**./run.sh start**
+Will run in daemon mode and you can safety close remote ssh connection.
 
 
-Option **./run.sh stop** will stop daemon.
+**./run.sh stop**
+Will stop daemon.
 
 
-Option **./run.sh status** will show if daemon runned currently on not.
+**./run.sh status**
+Will show if daemon runned currently on not.
 
 
 ## Where I can put my code?
 ## Where I can put my code?
-Look to the file `loop.sh`:
+Look into file `loop.sh`:
 ```
 ```
 #!/bin/sh
 #!/bin/sh
 
 
@@ -67,3 +71,4 @@ Look to the file `loop.sh`:
 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.
+