paste 썸네일형 리스트형 [리눅스] paste 명령어 paste 명령어 merge lines of files 사용법 paste [OPTION]... [FILE]... -d, --delimiters=LIST reuse characters from LIST instead of TABs -s, --serial paste one file at a time instead of in parallel 예제 파일(111.txt, aaa.txt) $ cat 111.txt 111 222 333 444 555 $ cat aaa.txt aaa bbb ccc ddd eee paste 명령으로 두 파일을 한 줄씩 병합하여 출력 paste 111.txt aaa.txt $ paste 111.txt aaa.txt 111aaa 222bbb 333ccc 444ddd 555eee -s 옵션은.. 더보기 이전 1 다음