what does the comma represent listing files in linux?

217 Views Asked by At

When I run

ls -l

I see a comma among the list of files. Do you know what is that? and how can I remove that?

1

There are 1 best solutions below

0
On

The character , has no particular meaning while listing files so the root cause looks to be you simply have a file named that way.

rm , would then be the more sensible way to remove it.