mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 06:52:56 +00:00
9 lines
287 B
Bash
9 lines
287 B
Bash
#!/bin/bash
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
echo "Inside b.sh MY_VAR variable has ${MY_VAR} value"
|
|
echo "Changing value of MY_VAR"
|
|
export MY_VAR=456
|
|
echo "After change inside b.sh MY_VAR variable has ${MY_VAR} value"
|