I have variable and its contains of string
LST_FILE='find \"$2\" \"${TYPE[@]}\" \"${NAME[@]}\" -mmin +\"$HOUR_TO_MIN\"'
how to turn related string into command ? is it fine using eval ? or there's any substitute for eval because I've been read that eval is not recommended to use..
eval $LST_FILE
because I plan to do below command,
LST_FILE+='-delete'
eval $LST_FILE