1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 11:06:00 +02:00
tldr/pages.ko/common/tac.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

692 B

tac

파일을 역순으로 표시하고 연결. 같이 보기: cat. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/tac-invocation.html.

  • 특정 파일들을 역순으로 연결:

tac {{경로/대상/파일1 경로/대상/파일2 ...}}

  • stdin을 역순으로 표시:

{{cat 경로/대상/파일}} | tac

  • 특정 [s]eparator 사용:

tac -s {{구분자}} {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 특정 [r]egex를 [s]eparator로 사용:

tac -r -s {{구분자}} {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 각 파일 앞에 구분자 [b]efore 사용:

tac -b {{경로/대상/파일1 경로/대상/파일2 ...}}