• linux cut: invalid byte, character or field list Try 'cut --help' for more information.


    1. 概述

    centos执行简单shell 脚本 报错

    cut: invalid byte, character or field list
    Try 'cut --help' for more information.

    2. 代码

      vim userid.sh

    #!/bin/bash
    #Program
    #       Use id, finger command to check system account's information.
    #History
    #2015/07/17 logan first release
    PATH=/bin:$PATH
    export PATH
    
    users=$(cut -d ':' -fl /etc/passwd)#注意这行!!!!!!!!!!!!!
    for username in ${users}
    do
            id ${username}
    done

    3. 解决问题

       代码中cut命令 后跟的选项及参数有误 应该是数字1而不是字母l

    4. cut 命令学习请参考 https://linuxconfig.org/learning-linux-commands-cut

    以下为节选

    Frequently used options
    
    Without too much talk let's start by introducing main and the most commonly used cut command line options.
    
    -b, --bytes=LIST
    Cuts the input file using list of bytes specified by this option
    -c, --characters=LIST
    Cuts the input file using list of characters specified by this option
    -f, --fields=LIST
    Cuts the input file using list of field. The default field to be used TAB. The default behavior can be overwritten by use of -d option.
    -d, --delimiter=DELIMITER
    Specifies a delimiter to by used as a field. As mentioned previously default field is TAB and this option overwrites this default behavior.
    Using LIST
    
    List in this case can consist of single or range of bytes, characters or fields. For example to display only second byte the list will include a single number 2 .
    
    Therefore:
    
    2 will display only second byte, character or field counted from 1
    2-5 will display all bytes, characters or fields starting from second and finishing by 5th
    -3 will display all bytes, characters or fields before 4th
    5- will produce all bytes, characters or fields starting with 5th
    1,3,6 will display only 1st, 3rd and 6th byte, character or field
    1,3- displays 1st and all bytes, characters or fields starting with 3th
    Let's see how this works in practice.
    
    Cut by Character
    
    In the following examples are rather self-explanatory. We used cut's -c option to print only specific range of characters from cut.txt file.
    
    echo cut-command > cut.txt 
    $ cut -c 2 cut.txt 
    u
    $ cut -c -3 cut.txt
    cut
    $ cut -c 2-5 cut.txt
    ut-c
    $ cut -c 5- cut.txt
    command
    Cut By Byte
    
    The principle behind -b ( by byte ) option is similar to the one described previously. We know that a single character has size of 1 byte and therefore result after executing previous commands with -b option will be exactly the same:
    
    $ cut -b 2 cut.txt
    u
    $ cut -b -3 cut.txt
    cut
    $ cut -b 2-5 cut.txt
    ut-c
    $ cut -b 5- cut.txt
    command
  • 相关阅读:
    pandas openpyxl 设置Excel 列宽自适应
    tar 打包当前目录下文件但不包括该录
    pandas美化excel高亮某行
    学习笔记260—NMF 非负矩阵分解的原理及应用
    学习笔记259—低秩分解
    学习笔记258—张量的背景
    学习笔记261—MATLAB 不能保存变量问题及解决办法
    Creating PDF Reports with Pandas, Jinja and WeasyPrint
    520论文
    使用bat获取win设备信息
  • 原文地址:https://www.cnblogs.com/rocky-fang/p/6709622.html
Copyright © 2020-2023  润新知