Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 368 Bytes

cut.md

File metadata and controls

20 lines (17 loc) · 368 Bytes

cut

cut -d ":" -f2-
  • -d : 구분자로 사용할 문자열
  • -f : 구분자에 의해 출력할 필드를 선택한다.
    -f2- : 2번째 필드부터 끝까지 출력
    -f1,4 : 1번째 필드와 4번째 필드를 출력
    -f1-3 : 1번째 필드부터 3번째 필드까지 출력

link

  • [[find]]
  • [[grep]]
  • [[tr]]
  • [[awk]]
  • [[sed]]