#!/bin/bash: ${OVERRIDABLE:="thedefault"}echo ${OVERRIDABLE}
$ bash ./temp.sh thedefault$ OVERRIDABLE="overridden" bash ./temp.sh overridden
Post a Comment
No comments:
Post a Comment