1

This is one of the many similar lines from the output from ls -all

lrwxrwxrwx  1 subhrcho dba   25 Dec  6 01:36 beam-server.jpr -> .ade_path/beam-server.jpr

What does the above signify ? I am specially interested in .ade_path ? What does the dot(.) signify here ?

Geek
  • 6,688

1 Answers1

3

The file beam-server.jpr is a symbolic link to .ade_path/beam-server.jpr. This is also what the l stands for in the file's permissions.

File and directory names prefixed with a full stop (.) are hidden and not normally listed by ls unless the -a or --all arguments are passed.