ebook-convert, ect, ed, edgepaint, eget, egrep, eksctl: add Korean translation (#14195)

This commit is contained in:
HoJeong Im
2024-10-16 16:12:56 +09:00
committed by GitHub
parent a4c8a7e42e
commit da9ac695c9
7 changed files with 188 additions and 0 deletions

33
pages.ko/common/ed.md Normal file
View File

@@ -0,0 +1,33 @@
# ed
> Unix의 원본 텍스트 편집기.
> 참고: `awk`, `sed`.
> 더 많은 정보: <https://www.gnu.org/software/ed/manual/ed_manual.html>.
- 빈 문서로 대화형 편집기 세션을 시작:
`ed`
- 빈 문서와 특정 프롬프트로 대화형 편집기 세션을 시작:
`ed --prompt='> '`
- 사용자에게 친숙한 오류로 대화형 편집기 세션을 시작:
`ed --verbose`
- 진단, 바이트 수 및 '!' 프롬프트가 없는 빈 문서로 대화형 편집기 세션을 시작:
`ed --quiet`
- 명령이 실패할 때, 종료 상태 변경 없이 대화형 편집기 세션을 시작:
`ed --loose-exit-status`
- 특정 파일을 편집 (로드된 파일의 바이트가 표시):
`ed {{경로/대상/파일}}`
- 문자열을 모든 줄에 대한 특정 대체 문자열로 대체:
`,s/{{정규_표현식}}/{{[대체_문자열]}}/g`