I am trying to understand a part of search function written in a piece of code below is the expression mentioned.
if [ -d $1] then <action block>
Advertisement
Answer
You can use it to determine if a directory exist like
if [ -d "$DIR" ]; then # code fi