(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/bin/bash | |
| ############################################################################## | |
| # An rclone backup script by Jared Males ([email protected]) | |
| # | |
| # Copyright (C) 2018 Jared Males <[email protected]> | |
| # | |
| # This script is licensed under the terms of the MIT license. | |
| # https://opensource.org/licenses/MIT | |
| # |
| #!/usr/bin/env bash | |
| TEMPFILE=/tmp/unixcount | |
| exist=0 | |
| notexist=0 | |
| echo 0 0 > $TEMPFILE | |
| curl "https://raw.githubusercontent.com/dspinellis/unix-v4man/master/man0/ptxx"| | |
| grep "(I)"| |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.