ls -la 中的列是什么?

ls -la 中的列是什么?

ls -la
当我使用例如时我找不到什么是列:

-rw------- 1 myuser root 3272 may 14 16:30 my_file

-rw------- 1- 访问权限
myuser- 文件所有者?
root- ?
3272- ?
may 14 16:30- 修改日期?
my_file- 文件名称

答案1

为了:

- type of the item 

        d   a directory.
        b   a block special file.
        c   a character special file.
        l   symbolic link.
        p   first-in, first-out (FIFO) pipe special file.
        s   local socket.
        -   ordinary file.

rw- permissions for user read, write, but no execution
--- permissions for group; none here
--- permissions for others; none here
1 is the amount of links (see `stat my_file`) 
myuser is the owner` 
root is the group
3272 is the size in bytes
may 14 16:30 last date changed
my_file is the filename

关于ls -la-l显示一长串文件,显示a隐藏文件(如果有)(以 开头的.a如果您想将其用于正常情况,请省略。

相关内容