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