There is this line in a shell script i have seen:
grep -e ERROR ${LOG_DIR_PATH}/${LOG_NAME} > /dev/null
if [ $? -eq 0 ]
|
|
It's checking the return value ( Usually when you see something like this (checking the return value of grep) it's checking to see whether the particular string was detected. Although the redirect to |
|||||||||||
|
|
The
So in this case it's checking whether any ERROR lines were found. |
|||
|
|
|
It is an extremely overused way to check for the success/failure of a program. Typically, the code snippet you give would be refactored as:
if grep -e ERROR ${LOG_DIR_PATH}/${LOG_NAME} > /dev/null; then
...
fi
(Although you can use 'grep -q' in some instances instead of redirecting to /dev/null, doing so is not portable. Many implementations of grep do not support the -q option, so your script to fail if you use it.) |
|||
|
|