eg:指定提取第3个字符
cut -d 3 test.txt
eg:指定提取第3个字符之前所有字符
cut -d -3 test.txt
eg:指定提取第3个字符之后所有字符
cut -d 3- test.txt
eg:指定提取范围字符,每一行的第三个到第五个字节,以及第8个字节
cut -d 3-5,8 test.txt
eg:以:为分隔符提取第一个域
cut -d : -f 1 test.txt
-f:域提取
eg:指定提取第3个字符
cut -d 3 test.txt
eg:指定提取第3个字符之前所有字符
cut -d -3 test.txt
eg:指定提取第3个字符之后所有字符
cut -d 3- test.txt
eg:指定提取范围字符,每一行的第三个到第五个字节,以及第8个字节
cut -d 3-5,8 test.txt
eg:以:为分隔符提取第一个域
cut -d : -f 1 test.txt
-f:域提取
本文标题:cut修建小能手
本文链接:https://www.haomeiwen.com/subject/zovcottx.html
网友评论