-2

When I try to cat in one file, for exemple cert.pem I receive ab error: No such file or directory

my folder and command

Mureinik
  • 297,002
  • 52
  • 306
  • 350
Lucas Resende
  • 582
  • 5
  • 14

1 Answers1

1

These are symbolic links - special files that just contain the path to another file. When you cat them, they essentially redirect to the file they link to. However, as evident by the red color in the ls output, these links are broken - they point to files that do not exist, and thus you get that error when you try to cat them.

Mureinik
  • 297,002
  • 52
  • 306
  • 350