I'm trying to check if a file exists, but with a wildcard. Here is my example:
if [ -f "xorg-x11-fonts*" ]; then
printf "BLAH"
fi
I have also tried it without the double quotes.
|
The simplest should be to rely on
I redirected the |
|||||||||||
|
|
If your shell has a nullglob option and it's turned on, a wildcard pattern that matches no files will be removed from the command line altogether. This will make ls see no pathname arguments, list the contents of the current directory and succeed, which is wrong. GNU stat, which always fails if given no arguments or an argument naming a nonexistent file, would be more robust. Also, the &> redirection operator is a bashism.
Better still is GNU find, which can handle a wildcard search internally and exit as soon as at it finds one matching file, rather than waste time processing a potentially huge list of them expanded by the shell; this also avoids the risk that the shell might overflow its command line buffer.
Non-GNU versions of find might not have the -maxdepth option used here to make find search only the /dir/to/search instead of the entire directory tree rooted there. |
|||
|
|
UPDATE: Okay, now I definitely have the solution:
|
|||||||||
|
This will work with multiple files and with white space in file names. |
|||
|
|
|
Try this
Test
Note that this only works in the current directory, or where the var |
||||
|
|
man test
will work for dir\file. regards |
|||||
|
[command, most likely causing[to exit with an error and therefore be interpreted as no files matching. – Richard Hansen Jun 17 '11 at 6:31