-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunbounded.sh
executable file
·19 lines (15 loc) · 973 Bytes
/
unbounded.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash
# -------------------------------------------------------------------------------- #
# Description #
# -------------------------------------------------------------------------------- #
# Ensure that trapper can correctly identify and locate an unbounded variable. #
# -------------------------------------------------------------------------------- #
# shellcheck disable=SC1091
source ../../src/trapper.sh
# shellcheck disable=SC2154
echo "${FRED}"
# -------------------------------------------------------------------------------- #
# End of Script #
# -------------------------------------------------------------------------------- #
# This is the end - nothing more to see here. #
# -------------------------------------------------------------------------------- #