리눅스 첫번째 행 제거

Jmnote (토론 | 기여)님의 2024년 2월 21일 (수) 16:12 판 (새 문서: ==개요== ;리눅스 첫행 제거 ;리눅스 첫번째 행 제거 <syntaxhighlight lang='console'> root@wsl:~# cat a.txt 11 22 33 44 55 </syntaxhighlight> <syntaxhighlight lang='co...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

리눅스 첫행 제거
리눅스 첫번째 행 제거
root@wsl:~# cat a.txt
11
22
33
44
55
root@wsl:~# cat a.txt | sed 1d
22
33
44
55

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}