BuLangVM

(★ 11)

No description available.

파일 탐색기

  • .gitignore
  • API.md
  • asan.supp
  • BUILTIN_METHODS.md
  • BULANG_SYNTAX_REFERENCE.md
  • CMakeLists.txt
  • leak_analyzer.py
  • main.dump
  • NATIVE_BINDINGS.md
  • OPTIMIZATIONS.md
  • README.md
  • RUNTIME_DETECTION.md
  • symbolize.py
  • SYNTAX.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

crypto

설명 보기 ▼

암호화 관련 기능을 관리.
설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/security/asa/asa-cli-reference/A-H/asa-command-ref-A-H/crypto-is-cz-commands.html>.

crypto key generate rsa

`rsa` 키 생성:

crypto key generate rsa modulus {{1024}}

키의 modulus 값 지정하여 생성:

crypto key zeroize

모든 키 삭제:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pop

설명 보기 ▼

터미널에서 이메일을 보내는 도구.
더 많은 정보: <https://github.com/charmbracelet/pop>.

pop

텍스트 기반 사용자 인터페이스 시작:

pop < {{path/to/message.md}} --from {{[email protected]}} --to {{[email protected]}} --subject "{{On the Subject of Ducks...}}" --attach {{path/to/attachment}}

Markdown 파일의 내용을 본문으로 사용하여 이메일 보내기:

pop --help

도움말 표시:

🔍

regex

설명 보기 ▼

정규 표현식 (`regex`)은 텍스트에서 특정 패턴을 찾거나 일치시키고 조작하는 데 사용하는 표현식.
참고: `regex`는 명령이 아니라, 다른 명령에서 사용하는 문법 .
관련 항목: `egrep`, `glob`.
더 많은 정보: <https://cheatography.com/davechild/cheat-sheets/regular-expressions/>.

.

임의의 한 문자와 일치:

^{{hello}}

줄의 시작과 일치:

{{world}}$

줄의 끝과 일치:

🔍

time

설명 보기 ▼

명령어 실행 시간을 측정.
참고: `time`은 셸 내장 명령어이거나 독립 실행형 프로그램이거나 둘 다일 수 있습니다.
관련 항목: `times`.
더 많은 정보: <https://manned.org/time>.

time {{command}}

`command`를 실행하고 시간 측정 결과를 `stdout`에 출력:

time

현재 시스템 시간 표시 및 새 시간 입력 요청 (비워두면 변경되지 않음):

time read

매우 간단한 스톱워치 생성 (Bash에서만 작동):

// repository documentation