Skip to main content

8.7) Results (cont'd)


Now in Exercise 6, if you left a copy of the sound.dat in the home directory and put one in the datadir so there are two copies in different directories and then you did the find command again from the home directory:

find . –name ‘sound.dat’ –print

then it would show:

./sound.dat
./datadir/sound.dat

So you can see that it tells you all the files called ‘sound.dat’ and it gives the path to get to the files from you are when you implemented the find command.