mirror of
https://github.com/StackExchange/blackbox.git
synced 2025-12-16 11:33:01 +02:00
12 lines
213 B
Bash
Executable File
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"
|