FreeDom

(★ 19)

A free and open-source minimal web browser written in C, focused on Zero Trust and Zero Knowledge principles.

오너의 다른 레포

파일 탐색기

  • .gitignore
  • app.py
  • browser.gif
  • build.err
  • build_deb.sh
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • configure
  • CONTRIBUTING.md
  • docker-entrypoint.sh
  • docker_run.sh
  • Dockerfile
  • doff
  • fuzz.sh
  • install.sh
  • KNOWLEDGE_BASE.md
  • LICENSE
  • Makefile
  • pull_request_template.md
  • README.md
  • requirements.txt
  • run_freedom.sh
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

line

설명 보기 ▼

라인을 관리합니다.
설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/routers/sdwan/command/iosxe/qualified-cli-command-reference-guide/m-line-commands.pdf>.

line vty 0 15

0번부터 15번까지의 VTY 라인 설정:

line

Read input:

🔍

boxes

설명 보기 ▼

ASCII 아트 상자 그리기, 제거 및 복구.
더 많은 정보: <https://boxes.thomasjensen.com/boxes-man-1.html>.

echo "{{string}}" | boxes

문자열 주위에 상자 그리기:

echo "{{string}}" | boxes {{[-r|--remove]}}

문자열에서 상자를 제거[r]:

echo "{{string}}" | boxes {{[-d|--design]}} {{parchment}}

문자열 주위에 특정 디자인[d]의 상자 그리기:

🔍

docker build

설명 보기 ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

설명 보기 ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

firefox

설명 보기 ▼

무료 오픈 소스 웹 브라우저.
더 많은 정보: <https://wiki.mozilla.org/Firefox/CommandLineOptions>.

firefox {{https://www.duckduckgo.com}}

Firefox를 실행하고 웹 페이지 열기:

firefox --new-window {{https://www.duckduckgo.com}}

새로운 창 열기:

firefox --private-window

비공개 (시크릿) 창을 열기:

🔍

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:

🔍

http

설명 보기 ▼

HTTPie: 테스트, 디버깅 및 일반적으로 API 및 HTTP 서버와 상호작용하도록 설계된 HTTP 클라이언트.
관련 항목: `xh`.
더 많은 정보: <https://httpie.io/docs/cli/usage>.

http {{https://example.com}}

간단한 GET 요청을 수행 (응답 헤더 및 콘텐츠 표시):

http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}

특정 출력 내용을 인쇄 (`H`: 요청 헤더, `B`: 요청 본문, `h`: 응답 헤더, `b`: 응답 본문, `m`: 응답 메타데이터):

http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}

요청을 보낼 때 HTTP 메소드를 지정하고 프록시를 사용하여 요청을 가로채기:

🔍

https

설명 보기 ▼

이 명령은 `http`의 별칭입니다.

tldr http

자세한 내용은 원본 명령을 참고하세요:

🔍

link

설명 보기 ▼

기존 파일에 대한 하드 링크 생성.
더 많은 옵션은 `ln` 명령을 참조하세요.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/link-invocation.html>.

link {{path/to/existing_file}} {{path/to/new_file}}

기존 파일에 새로운 파일로 하드 링크 생성:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

🔍

aplay

설명 보기 ▼

ALSA 사운드카드 드라이버를 위한 사운드 플레이어.
더 많은 정보: <https://manned.org/aplay>.

aplay {{path/to/file}}

특정 파일 재생 (파일 형식에 따라 샘플링 속도, 비트 깊이 등이 자동으로 결정됨):

aplay {{[-d|--duration]}} 10 {{[-r|--rate]}} 2500 {{path/to/file}}

특정 파일의 처음 10초를 2500 Hz에서 재생:

aplay {{[-c|--channels]}} 1 {{[-t|--file-type]}} raw {{[-r|--rate]}} 22050 {{[-f|--format]}} mu_law {{path/to/file}}

22050 Hz, 모노, 8비트, Mu-Law `.au` 파일로 원시 파일 재생:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

script

설명 보기 ▼

터미널 출력을 파일로 기록합니다.
더 많은 정보: <https://manned.org/script>.

script

현재 디렉토리의 `typescript`라는 이름의 파일에 새 세션 기록:

exit

사용자 지정 파일 경로에 새 세션 기록:

script {{path/to/session.out}}

기존 파일에 추가하여 새 세션 기록:

🔍

systemctl start

설명 보기 ▼

Start systemd units.

systemctl start {{unit}}

Start a unit:

systemctl start {{unit}} --user

Start a user unit:

🔍

color

설명 보기 ▼

콘솔의 전경 및 배경 색상을 설정.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/color>.

color

콘솔 색상을 기본값으로 설정:

color /?

사용 가능한 색상 값 및 세부 정보 나열:

color {{foreground_code}}{{background_code}}

16진수 번호(`1-9,a-f`)를 사용하여 콘솔 전경 및 배경을 특정 색상으로 설정:

// repository documentation