#!/usr/bin/env bash

#
# blackbox_list_files -- List files that black box is tracking
#
set -e
source "${0%/*}/_blackbox_common.sh"

while IFS= read <&99 -r encodedname; do
  echo $encodedname
done 99<"$BB_FILES"
