mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 20:42:57 +00:00
12 lines
201 B
Bash
12 lines
201 B
Bash
#!/bin/bash
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
echo "Started: a.sh"
|
|
|
|
export OTHER_VAR=456
|
|
|
|
run-unknown-command
|
|
|
|
echo "Finished: a.sh"
|