2015-02-10 16:08:19 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# blackbox_list_files.sh -- List files that black box is tracking
|
|
|
|
|
#
|
|
|
|
|
set -e
|
|
|
|
|
blackbox_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
|
source ${blackbox_home}/_blackbox_common.sh
|
2015-02-16 16:16:40 +00:00
|
|
|
cat "$BB_FILES"
|