美文网首页
cut修建小能手

cut修建小能手

作者: Big_dimple | 来源:发表于2017-03-25 18:27 被阅读4次

    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