From bb6e7e3451a017d13c2bb7d3ee572d5bb579c2c8 Mon Sep 17 00:00:00 2001 From: Joe Rodriguez Jr Date: Tue, 10 Feb 2015 16:08:19 -0600 Subject: [PATCH] List files that BlackBox is tracking --- bin/blackbox_list_files | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bin/blackbox_list_files diff --git a/bin/blackbox_list_files b/bin/blackbox_list_files new file mode 100644 index 0000000..c7404e1 --- /dev/null +++ b/bin/blackbox_list_files @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# +# blackbox_list_files.sh -- List files that black box is tracking +# +set -e +blackbox_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) +source ${blackbox_home}/_blackbox_common.sh + +echo -e "\nFiles currently managed my Blackbox:\n" +cat $BB_FILES + +echo