What exactly is the long format in Linux?.
I am a newbie into programming and Linux. So I was taking a tutorial in terminal operations.
This command ls -l
is said to list the files in the working directory in long format.
Can somebody explain or give resources explaining about the long format and its use?
As you already may know, ls
shows you the directories and files in your current folder.
ls -l
(or shortly ll) prints you the long format as follows:
drwxr-xr-xr root root 1093 Oct 7 09:26 file
these stand for:
root root
stands for the owner of the file and the group owner (you will find out about root as you carry on learning about linux).For more explanation visit this link: http://go2linux.garron.me/command-ls-file-permissions