About the meaning of the content displayed by ls -alh

ls -alh

$  ls -alh

-l: (list) Display in list form
-a: (all) Display all files, including hidden files
-h: (human readable) Display file size in human readable form
ls -alh

About file types

dIs a catalog file, lis a link file, -is an ordinary file, pis a pipeline

About r w xthe chmodvalue will be used when modifying file permissions

r=4, w=2, x=1

About the number of hardware links

文件链接数The concept in the picture is wrong. After checking the information, the correct statement is 硬链接数that when the number of hard links is 0, the file does not exist

Guess you like

Origin blog.csdn.net/u010684603/article/details/107734954