Linux查看文件所在分组
Linux241
description
在linux系统中通过命令行查看文件所在的分组,运行结果的第五列为该文件所在的分组
command
ls -l
parameter
ll : 列出有关文件的信息(默认为当前目录) -l : 使用长列表格式
result
total 0 d--------- 2 root root 56 Jul 3 2021 test -rw-r--r-- 1 root root 0 Jan 7 12:06 testFile
ls -l
ll : 列出有关文件的信息(默认为当前目录) -l : 使用长列表格式
total 0 d--------- 2 root root 56 Jul 3 2021 test -rw-r--r-- 1 root root 0 Jan 7 12:06 testFile
I hope to help every developer quickly find the commands they need. Of course, you can also add your own commonly used commands for easy searching.