查看文件类型的三种办法
1 ls
ls -l 或者 ll (ls -l 别名)
# ll anaconda-ks.cfg ? ? ? ? ? ? ? ? ? ? ? //看第一个字符 -rw-------. 1 root root 2460 6月 ? 1 23:37 anaconda-ks.cfg
2 file
[root@xiaochen ~]# file anaconda-ks.cfg anaconda-ks.cfg: ASCII English text
3 stat 命令
stat 命令 查看文件ctime atime mtime
# stat anaconda-ks.cfg ? File: ‘anaconda-ks.cfg’ ? Size: 2592 ? ? ? Blocks: 8 ? ? ? ? ?IO Block: 4096 ? regular file Device: 803h/2051d Inode: 33574996 ? ?Links: 1 Access: (0600/-rw-------) ?Uid: ( ? ?0/ ? ?root) ? Gid: ( ? ?0/ ? ?root) Access: 2018-09-20 05:57:35.329041552 +0800 Modify: 2018-09-20 05:57:35.334041552 +0800 Change: 2018-09-20 05:57:35.334041552 +0800 ?Birth: - [root@master ~]# stat /dev/null ? File: ‘/dev/null’ ? Size: 0 ? ? ? ? Blocks: 0 ? ? ? ? ?IO Block: 4096 ? character special file Device: 5h/5d Inode: 5930 ? ? ? ?Links: 1 ? ? Device type: 1,3 Access: (0666/crw-rw-rw-) ?Uid: ( ? ?0/ ? ?root) ? Gid: ( ? ?0/ ? ?root) Access: 2019-01-21 16:27:54.255000135 +0800 Modify: 2019-01-21 16:27:54.255000135 +0800 Change: 2019-01-21 16:27:54.255000135 +0800 ?Birth: -
总结
以上就是
为各位朋友分享的 相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多 等着你!