How can i use test command for arbitrary number of files, passed in argument by regexp
for example:
test -f /var/log/apache2/access.log.* && echo "exists one or more files"
but mow print error: bash: test: too many arguments
|
How can i use test command for arbitrary number of files, passed in argument by regexp for example:
but mow print error: bash: test: too many arguments |
|||||||||
|
|
To avoid "too many arguments error", you need xargs. Unfortunately,
BTW, |
||||
|
|
|
Use a for loop and run
|
|||||||
|