1

In home directory ls shows the following:

terminal with ls

But let's look what is in Nautilus.

nautilus with home folder

I refreshed Nautilus many times. rm 1.1.c returns a error there is no such file in directory.

What's wrong?

Elnur
  • 113

1 Answers1

1

Nautilus has an option you can toggle by clicking on View to toggle Show Hidden Files files to on or off.

If you click the Show Hidden Files option you will see the hidden bakup files in Nautilus.

Files that end with the tilde (~) or begin with the dot (.) are hidden files.

Examples of hidden files:

2.1.cpp~
2.2.cpp~
.bashrc
.history

Your ls command would show even more files if you used the -a argument.

Type in this:

$ ls -a

You will then see substantially more files.

L. D. James
  • 25,036