Stupid bash tricks: a self-updating script

from blog Jessitron, | ↗ original
For a demo app, I want a simple-as-possible deploy script. The simplest thing is to hard-code the version number (which gives my docker image a unique tag, which gets kubernetes to pull the new image1). But I’m tired of updating the version number. So I made the script update it for me. Why not use ... Read moreStupid bash tricks: a self-updating...