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,548
  • 15
  • 46
  • 70
  • 2
    remember there is no `-all` option. It is either `--all`, which is the same as `-a` or `-a -l -l` which can be shortened to -all. What you are doing is the latter. – Karthik T Jan 16 '13 at 05:45
  • Possible duplicate of [What do the fields in ls -al output mean?](https://unix.stackexchange.com/questions/103114/what-do-the-fields-in-ls-al-output-mean) – G-Man Says 'Reinstate Monica' Nov 23 '19 at 03:39

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.

Andrew Lambert
  • 2,358
  • 1
  • 16
  • 17