$cut -f 1,3 -d : test.c
test.c라는 파일의 첫번째, 세번째 필드값을 보여주고, 각 필드는 콜론으
로 구분한다라고 설명이 나와 있는데...테스트 결과 ...이 설명이 이상한
거 같아서요...
결과는 다음과 같습니다.
원본 파일..
[test@jupiter test]$ cat test.c
#include "studio.h"
v oid main()
{
printf("This is the test");
}
// 다음 문자들을 주목해 주세요.
소ㆄhis 는 that 으로 변환 되고 that은 this로 변환됩니다.
======================================================
테스트 화면...
[test@jupiter test]$ cut -f 1,2 test.c
#include "studio.h"
v oid main()
{
printf("This is the test");
}
// 다음 문자들을 주목해 주세요.
소ㆄhis 는 that 으로 변환 되고 that은 this로 변환됩니다.