bb: add Korean translation (#11551)

pull/23/head
HoJeong Im 2023-11-21 01:50:34 +09:00 committed by GitHub
parent a330cda918
commit 38f70421c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages.ko/common/bb.md Normal file
View File

@ -0,0 +1,20 @@
# bb
> 스크립팅을 위한 기본 Clojure 인터프리터.
> 더 많은 정보: <https://book.babashka.org/#usage>.
- 표현식 평가:
`bb -e "(+ 1 2 3)"`
- 스크립트 파일 평가:
`bb -f {{경로/대상/스크립트.clj}}`
- `stdin`의 일련의 라인에 입력을 바인딩:
`printf "first\nsecond" | bb -i "(map clojure.string/capitalize *input*)"`
- `stdin`의 EDN(확장 가능한 데이터 표기법) 값 시퀀스에 입력을 바인딩:
`echo "{:key 'val}" | bb -I "(:key (first *input*))"`