I have the following file, named set_env_lin.sh:
#!/bin/bash
export SLACK_WEBHOOK_DEV=some_value_1
export SLACK_WEBHOOK_REAL=some_value_2
I followed this guide to make it a bash file, but when y call echo $SLACK_WEBHOOK_REAL, I get no value set.
What am I doing wrong?