Files
blackbox/bin/blackbox_list_files
tlimoncelli@stackexchange.com 180ee4076e Random
2016-05-17 12:58:13 -04:00

12 lines
213 B
Bash
Executable File

#!/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"