Record some Linux commands (6)

cut 取出 student.txt 文件中的第一列和第三列,可以使用如下命令:cut -f 1,3 -d ' ' student.txt 取出 student.txt 文件中的前三列,可以使用如下命令: cut -f 1-3 -d ' ' student.txt 取出 student.txt 文件中除第一列的其他列,可以使用如下命令:cut -f 1 -d ' ' student.txt --c
相關文章
相關標籤/搜索