How many hidden files are there in the /home/bob/data/ directory?


Why is total 8 and showing 6 ?
And answer is 2 only (we have (.) and (…) hidden files not count)

From what you have in your screenshot

.             is a DIRECTORY
..            is a DIRECTORY
data.txt      is a NORMAL FILE
.myfile1      is a HIDDEN FILE
.myfile2      is a HIDDEN FILE

Answer: 2

1 Like

. means this directory
.. means parent directory

bob@ubuntu-host ~/data ⮕ cd ..

bob@ubuntu-host ~ ⮕

You may like to consider doing this course before LFCS

1 Like