本文介绍了ls -ali输出中的字段是什么意思的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
ls -ali
shell命令显示以下输出:
The ls -ali
shell command shows the following output:
933442 -rwxrw-r-- 10 root root 2048 Jan 13 07:11 afile.exe
上一个显示中的所有字段是什么?
What are all the fields in the preceding display?
推荐答案
+--------------+------------------+-----------------+-------+-------+------+-------+-----+-------+-----------+
| index number | file permissions | number of links | owner | group | size | month | day | time | filename |
+--------------+------------------+-----------------+-------+-------+------+-------+-----+-------+-----------+
| 933442 | -rwxrw-r-- | 10 | root | root | 2048 | Jan | 13 | 07:11 | afile.exe |
+--------------+------------------+-----------------+-------+-------+------+-------+-----+-------+-----------+
注意:月,日和时间是最后一次修改的日期.
Note: month, day and time is the date of last modification.
这篇关于ls -ali输出中的字段是什么意思的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!