An open API service indexing awesome lists of open source software.

https://github.com/webbestmaster/bash

bash exmaple
https://github.com/webbestmaster/bash

Last synced: about 1 month ago
JSON representation

bash exmaple

Awesome Lists containing this project

README

          

```bash
$ watch -n 300 ./do-smth.sh # do smth every 300 sec
$ ps -ax | grep -i do-smth.sh # to find process
$ kill # to kill process
```

# nohup
```bash
$ nohup watch -n 3 ./do-smth.sh & # to keep process if terminal closed
$ exit
```