mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
bb: add Korean translation (#11551)
This commit is contained in:
parent
a330cda918
commit
38f70421c4
1 changed files with 20 additions and 0 deletions
20
pages.ko/common/bb.md
Normal file
20
pages.ko/common/bb.md
Normal 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*))"`
|
Loading…
Add table
Reference in a new issue