fixes for prep feisty host
[feisty_meow.git] / scripts / files / cast_identify_spell.sh
1 #!/bin/bash
2
3 # calls a verbose identify on each file passed to it.
4 # this should shake loose all the metadata and display it.
5
6 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
7
8
9 for file in "${@}"; do
10   echo
11   sep
12   echo "file: '$file'"
13   echo
14   identify -verbose "$file"
15   sep
16   echo
17 done