When you use wildcards with a ./sav manualscan
command for Symantec Endpoint Protection for Linux, you see the error "Unable to determine path."
For example, the following command:
./sav manualscan /testFolder/*
May result in this response:
Unable to stat file: /testFolder/*
Unable to determine path
Glob expansion is off, or the path with the wildcard is in quotes.
./sav manualscan
does not support wildcards if glob expansion is off.'/testFolder/*'
, the glob expansion for that particular command turns off, even if glob expansion is on. To turn on glob expansion:
set +o noglob
./sav manualscan
command. For example:./sav manualscan /testFolder/*
To enclose a path with quotes for ./sav manualscan
, use an absolute path with no wildcards. Absolute paths that do not contain wildcards work fine if they are enclosed with quotes.