例:如何取得/etc/hosts文件的权限对应的数字内容,如-rw-r--r-- 为 644,要求使用命令取得644这样的数字
方法1:sed
[[email protected] ~]# stat /etc/hosts | sed -nr‘4s#.*\(0|/-.*##gp‘
644
[[email protected] ~]#
方法2:sed 反向引用
[[email protected] tmp]# stat /etc/hosts |sed -nr ‘4s#.*\(0(.*)\/-.*#\1#gp‘
644
[[email protected] tmp]#
方法3:awk
[[email protected] ~]# stat /etc/hosts |awk -F‘[/0]‘ ‘NR==4{print $2}‘
644
[[email protected] ~]#
方法4:stat
[[email protected] ~]# stat -c%a /etc/hosts
644
[[email protected] ~]#
>>>>>>>>刚学的这些方法,方法还有很多,linux魅力无穷啊<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
时间: 2024-11-05 13:47:43