4

I am getting Linux Training and came across one question that I am unable to find answer of:

What does the . mean in chmod command? Eg: chmod 777 .

ilkkachu
  • 138,973

1 Answers1

7

. represents the current directory. Your mentioned command will give full permissions to everyone on your current directory. Similarly .. represents the parent directory (one directory up from the current). You can see these files by using ls -a

jesse_b
  • 37,005