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
|
2015-06-16 13:21:51 -05:00
|
|
|
source "${0%/*}/_blackbox_common.sh"
|
2016-05-17 12:58:13 -04:00
|
|
|
|
|
|
|
|
while IFS= read <&99 -r encodedname; do
|
|
|
|
|
echo $encodedname
|
|
|
|
|
done 99<"$BB_FILES"
|