How would you go about telling whether files of a specific extension are present in a directory, with bash?
Something like
if [ -e *.flac ]; then
echo t
You need to be carful which flag you throw into your if
statement, and how it relates to the outcome you want.
If you want to check for only regular files and not other types of file system entries then you'll want to change your code skeleton to:
if [ -f file ]; then
echo true;
fi
The use of the -f
restricts the if
to regular files, whereas -e
is more expansive and will match all types of filesystem entries. There are of course other options like -d
for directories, etc. See http://tldp.org/LDP/abs/html/fto.html for a good listing.
As pointed out by @msw, test
(i.e. [
) will choke if you try and feed it more than one argument. This might happen in your case if the glob for *.flac
returned more than one file. In that case try wrapping your if
test in a loop like:
for file in ./*.pdf
do
if [ -f "${file}" ]; then
echo 'true';
break
fi
done
This way you break
on the first instance of the file extension you want and can keep on going with the rest of the script.