fixes for prep feisty host
[feisty_meow.git] / scripts / files / cast_identify_spell.sh
diff --git a/scripts/files/cast_identify_spell.sh b/scripts/files/cast_identify_spell.sh
new file mode 100644 (file)
index 0000000..73e992d
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# calls a verbose identify on each file passed to it.
+# this should shake loose all the metadata and display it.
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+
+
+for file in "${@}"; do
+  echo
+  sep
+  echo "file: '$file'"
+  echo
+  identify -verbose "$file"
+  sep
+  echo
+done