cut修建小能手
2017-03-25 本文已影响4人
Big_dimple
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:域提取