If looking for environment variable MAIL
env | grep MAIL
# or
find / -name 'mail' 2> /dev/null
# / - is the location where it searches
# -name 'mail' - is the query to search
# 2> - error messages will redirected to nowhere
If looking for environment variable MAIL
env | grep MAIL
# or
find / -name 'mail' 2> /dev/null
# / - is the location where it searches
# -name 'mail' - is the query to search
# 2> - error messages will redirected to nowhere