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?
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?
Copyright © 2021 Jogjafile Inc.
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.