(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 | |
readonly TIME_OUT=1 | |
STATUS=1 | |
printf "Command: %s \n" $@ | |
#pass command | |
while [ "$STATUS" -ne 0 ] | |
do | |
"$@" | |
STATUS=$? |
(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.