In Ubuntu 10.10, showing a file listing using ll
will occasionally show files with a * appended to the name of the file. What does this star mean?
Asked
Active
Viewed 2.2k times
20

Chris Henry
- 1,552
- 3
- 15
- 15
2 Answers
19
It means the file is executable and you have ll
aliased to ls -F
, ls --classify
or ls --indicator-style=classify
(among other possible options). You can use the command alias ll
to see what the alias is and change it persistently by editing your ~/.bashrc
file (or other file) where it's defined.
Other indicators:
/
- directory@
- symbolic links|
- fifos=
- sockets>
- doors
each depending on OS/filesystem support.

Dennis Williamson
- 62,149
- 16
- 116
- 151