I've accidentally stumbled into the l
command in ubuntu which is pretty similar to ls
, although the output is slightly different.
For instance, the output of both commands in a directory with the following tree structure is:
Test
|_ Folder1
|_ Folder2
|_ File1
|_ File2
~/Test$ ls
File1 File2 Folder1 Folder2
~/Test$ l
File1 File2 Folder1/ Folder2/
Note the slahes at the end of each folder. What exactly is l
and which differences does it have with respect to ls
?