2
I’m using a tool to deploy in PHP.
When I use the command, some symbolic links are created for certain folders.
As I will run this command on a Linux server, I wonder if there is a command to list all the symbolic links created in the folder.
With the command ls
I’m not being able to differentiate between folders and links
How can I do this on Linux?
tried
ls -la
? You can see who’s link by->
– Bacco
What does that?
– Wallace Maxters
is the
ls
, but with the flags to "list in list" and show everything. If you prefer has thefind . -type l -ls
, that restricts to links only– Bacco
Responds to friend
– Wallace Maxters
http://linux.die.net/man/1/ls e http://linux.die.net/man/1/find
– Bacco
Who gave the -1 could inform how I could improve the question?
– Wallace Maxters