15

Typically, one sees find commands that look like this:

$ find . -name foo.txt

when the search is to begin from the current directory. I'm finding that on my machines (Ubuntu, Cygwin) I get the same results without the dot.

Why is it typically included? Is it just a convention to be explicit, or was/is it required on certain systems?

Eric Wilson
  • 4,722

2 Answers2

28

Some versions* of find require that you provide a path argument which is a directory from which to start searching. Dot . simply represents the current directory is is usually where you want to search.

You could replace this with any path that you want to be the base of the search. In some versions of find this can be left because the current directory is implied if no path argument is present.

You can run man find in your shell for details about the arguments. For example the usage synopsis for mine indicates that the path argument is optional (inside square brackest []):

   find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression]

If you ran my find with no arguments at all all files and directories starting from the current folder would be returned. Your example simply expressly states that the search should start from . and includes the expression -name foo.txt as one of the search filters.

* Notably all the BSD variants and anything sticking strictly to the POSIX standard. GNU find allows it to be optional.

Caleb
  • 70,105
5

The AIX version of find for example, requires the path and won't run if one isn't provided.

# oslevel -s
5300-08-03-0831
# find -name bob
Usage: find [-H | -L] Path-list [Expression-list]

# oslevel -s
6100-03-01-0921
# find -name bob
Usage: find [-H | -L] Path-list [Expression-list]

Although some AIX machines may have a GNU find installed, which can cope without the path,

# oslevel -s
6100-03-01-0921
# /opt/freeware/bin/find -version
GNU find version 4.1
EightBitTony
  • 21,373