cut:以某种方式按照文件的行进行分割 参数列表: -d 自定义分隔符,默认为制表符。 -f 与-d一起使用,feild 实例: 截取文件名 和文件扩展名
echo $file | cut -f1 -d ‘.‘
实例: 生成随机数
[[email protected] test]# cat /proc/sys/kernel/random/uuid | cut -f5 -d ‘-‘ b9eb0f0a6695
时间: 2024-11-03 20:53:25
cut:以某种方式按照文件的行进行分割 参数列表: -d 自定义分隔符,默认为制表符。 -f 与-d一起使用,feild 实例: 截取文件名 和文件扩展名
echo $file | cut -f1 -d ‘.‘
实例: 生成随机数
[[email protected] test]# cat /proc/sys/kernel/random/uuid | cut -f5 -d ‘-‘ b9eb0f0a6695