I am currently working on an issue using grep
and ls
. The goal is to list all lines that are link files in my current directory. I have 3 link files in my directory, but when I execute my command it only shows one.
Here is what I'm typing:
ls -lR | grep l*
Any help would be appreciated. Thanks
ls
, usefind . -type l
. – Nasir Riley Apr 30 '20 at 23:58