You must log in or # to comment.
find “${HOME}/docs/”
You want the full path in quotes so that paths with spaces are handled properly. Brackets are good practice when concatenating strings.
find “${HOME}/docs/”
You want the full path in quotes so that paths with spaces are handled properly. Brackets are good practice when concatenating strings.