https://github.com/webbestmaster/bash
bash exmaple
https://github.com/webbestmaster/bash
Last synced: about 1 month ago
JSON representation
bash exmaple
- Host: GitHub
- URL: https://github.com/webbestmaster/bash
- Owner: webbestmaster
- Created: 2019-10-27T17:21:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-27T18:01:52.000Z (over 6 years ago)
- Last Synced: 2025-03-04T16:35:45.437Z (over 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```