Use space as a delimiter with cut command

前端 未结 8 1161
[愿得一人]
[愿得一人] 2020-12-07 07:24

I want to use space as a delimiter with the cut command.

What syntax can I use for this?

8条回答
  •  北海茫月
    2020-12-07 08:27

    cut -d ' ' -f 2
    

    Where 2 is the field number of the space-delimited field you want.

提交回复
热议问题