📜  剪切分隔符空格 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:41.352000             🧑  作者: Mango

代码示例1
Just use cut command with delimiter flag 'd' as follows:
echo 'a1 a2 a3 a4 a5' | cut -d ' ' -f 1,4- 
a1 a4 a5    #outputs first and from 4th fields of given string