mdx
mdx is a command-line interface program for downloading manga from the MangaDex website. The program uses MangaDex API to fetch manga content.
파일 탐색기
- demo.gif
- interactive_mode_demo.gif
- nix-update.yaml
- release.yaml
- meta.go
- download.go
- find.go
- info.go
- ping.go
- root.go
- update.go
- common.go
- download.go
- filename.go
- find.go
- info.go
- ping.go
- print.go
- update.go
- version.go
- api.go
- api_test.go
- chapter.go
- error.go
- manga.go
- default.nix
- apk.yaml
- archlinux.yaml
- deb.yaml
- rpm.yaml
- .gitignore
- android_installation.sh
- Dockerfile
- flake.lock
- flake.nix
- generate-pfx.sh
- go.mod
- go.sum
- install.ps1
- install.sh
- LICENSE
- main.go
- Makefile
- README.md
- result
- wix.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
pkg
설명 보기 ▼
pkg
Termux용 패키지 관리 유틸리티.
더 많은 정보: <https://wiki.termux.com/wiki/Package_Management>.
pkg {{[up|upgrade]}}
설치됨 모든 패키지 업그레이드:
pkg install {{package}}
새 패키지 설치:
tldr pkg_add
패키지 설치/업데이트에 대한 설명서 보기:
docker build
설명 보기 ▼
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
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
fmt
설명 보기 ▼
fmt
단락을 결합하고 줄 너비를 문자 수 (기본적으로 75자)로 제한하여 텍스트 파일의 서식을 다시 지정.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/fmt-invocation.html>.
fmt {{path/to/file}}
파일 재포맷:
fmt {{[-w|--width]}} {{n}} {{path/to/file}}
(최대) `n` 문자의 출력 줄을 생성하는 파일 형식을 다시 지정:
fmt {{[-s|--split-only]}} {{path/to/file}}
주어진 너비보다 짧은 줄을 결합하지 않고, 파일 형식을 다시 지정:
git clone
설명 보기 ▼
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:
go install
설명 보기 ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
nix run
설명 보기 ▼
nix run
Run an application from a Nix flake.
See also: `nix flake`.
nix run
Run the default application in the flake in the current directory:
nix run nixpkgs#{{pkg}}
Run a command whose name matches the package name from nixpkgs (if you want a different command from that package, see `tldr nix shell`):
nix run nixpkgs#{{vim}} -- {{path/to/file}}
Run a command with provided arguments:
nix shell
설명 보기 ▼
nix shell
Start a shell in which the specified packages are available.
See also: `nix-shell`, `nix flake`.
nix shell {{nixpkgs#pkg1 nixpkgs#packageSet.pkg2 ...}}
Start an interactive shell with some packages from `nixpkgs`:
nix shell {{nixpkgs/nixos-21.05#pkg}}
Start a shell providing a package from an older version of `nixpkgs` (21.05):
nix shell -L
Start a shell with the "default package" from a flake in the current directory, printing build logs if any builds happen:
powershell
설명 보기 ▼
powershell
이 명령은 `powershell` 대신 `pwsh`를 사용하는 크로스 플랫폼 버전의 PowerShell(이전에는 PowerShell Core로 알려짐)과 혼동될 수 있습니다.
Windows의 원본 `powershell` 명령은 레거시 Windows 버전의 PowerShell(버전 5.1 이하)을 사용하는 데 여전히 사용할 수 있습니다.
더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.
tldr pwsh
최신 크로스 플랫폼 버전의 PowerShell(버전 6 이상)의 명령에 대한 문서 보기:
powershell
대화형 쉘 세션 시작:
tldr powershell {{[-p|--platform]}} windows
레거시 Windows PowerShell(버전 5.1 이하)의 명령에 대한 문서 보기:
tar
설명 보기 ▼
tar
아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
g[z]ipped 아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:
apk
설명 보기 ▼
apk
Alpine Linux 패키지 관리 도구.
더 많은 정보: <https://wiki.alpinelinux.org/wiki/Alpine_Package_Keeper>.
apk upgrade {{[-U|--update-cache]}}
모든 원격 저장소에서 저장소 색인 업데이트:
apk update
새 패키지 설치:
apk add {{package}}
패키지 제거:
apt install
설명 보기 ▼
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:
apt
설명 보기 ▼
apt
Debian 기반 배포판을 위한 패키지 관리 도구.
Ubuntu 16.04 이후 버전에서 대화형 사용 시 `apt-get`의 권장 대체 도구.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/apt.8>.
sudo apt update
사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt` 명령어 실행 전 권장):
apt search {{package}}
주어진 패키지 검색:
apt list {{package}}
패키지 정보 표시:
dnf install
설명 보기 ▼
dnf install
Install packages on Red Hat-based distributions.
sudo dnf {{[in|install]}} {{package1 package2 ...}}
Install packages by name:
sudo dnf {{[in|install]}} {{path/to/file}}
Install a package from a local file:
sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}
Install a package from the internet:
dnf
설명 보기 ▼
dnf
RHEL, Fedora 및 CentOS를 위한 패키지 관리 도구(yum을 대체).
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://dnf5.readthedocs.io/en/latest/commands/index.html>.
sudo dnf {{[up|upgrade]}}
설치된 패키지를 최신 버전으로 업그레이드:
dnf {{[se|search]}} {{keyword1 keyword2 ...}}
키워드를 통해 패키지 검색:
dnf {{[if|info]}} {{package}}
패키지에 대한 세부 정보 표시:
last
설명 보기 ▼
last
View the last logged in users.
last
View last login information (e.g., username, terminal, boot time, kernel) of all users as read from `/var/log/wtmp`:
last {{username}}
List login information of a specific user:
last {{[-n|--limit]}} {{login_count}}
Specify how many of the last logins to show:
pacman -U
설명 보기 ▼
pacman -U
This command is an alias of `pacman --upgrade`.
tldr pacman upgrade
View documentation for the original command:
pacman
설명 보기 ▼
pacman
Arch Linux 패키지 관리 도구.
관련 항목: `pacman-sync`, `pacman-remove`, `pacman-query`, `pacman-upgrade`, `pacman-files`, `pacman-database`, `pacman-deptest`, `pacman-key`, `pacman-mirrors`.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/pacman.8>.
sudo pacman -Syu
모든 패키지를 동기화하고 업데이트:
sudo pacman -S {{package}}
새 패키지 설치:
sudo pacman -Rs {{package}}
특정 패키지 및 의존성 제거:
yum
설명 보기 ▼
yum
RHEL, Fedora, CentOS(이전 버전용)를 위한 패키지 관리 도구.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/yum>.
tldr dnf
새 패키지 설치:
msiexec
설명 보기 ▼
msiexec
MSI 및 MSP 패키지 파일을 사용하여 Windows 프로그램 설치, 업데이트, 수리 또는 제거.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/msiexec>.
msiexec /package {{path\to\file.msi}}
MSI 패키지에서 프로그램 설치:
msiexec /package {{https://example.com/installer.msi}}
웹사이트에서 MSI 패키지 설치:
msiexec /update {{path\to\file.msp}}
MSP 패치 파일 설치:
