54 lines
1.5 KiB
Markdown
54 lines
1.5 KiB
Markdown
---
|
|
title: help
|
|
tags: [iptvc]
|
|
---
|
|
|
|
# Команда `help`
|
|
|
|
Для получения помощи о программе, нужно вызвать команду `help` или передать аргумент `-h` или `--help`.
|
|
|
|
Равнозначные команды:
|
|
|
|
```
|
|
./iptvc help
|
|
./iptvc --help
|
|
./iptvc -h
|
|
```
|
|
|
|
Вывод (может незначительно отличаться в разных версиях):
|
|
|
|
```
|
|
Simple utility to check iptv playlists. Part of m3u.su project.
|
|
Copyright (c) 2025, Антон Аксенов, MIT license.
|
|
|
|
Usage:
|
|
iptvc [command]
|
|
|
|
Available Commands:
|
|
check Check playlists
|
|
completion Generate the autocompletion script for the specified shell
|
|
help Help about any command
|
|
serve Start web interface
|
|
version Show version
|
|
|
|
Flags:
|
|
--config string path to config file (default "config.yml")
|
|
--debug enable debug mode (overrides config.yml)
|
|
-h, --help help for iptvc
|
|
--log-level string log level: debug, info, warn, error (overrides config.yml)
|
|
-v, --verbose enable additional output
|
|
|
|
Use "iptvc [command] --help" for more information about a command.
|
|
```
|
|
|
|
Чтобы получить справку о конкретной команде, можно вызвать программу одним из способов:
|
|
|
|
```
|
|
./iptvc help <КОМАНДА>
|
|
./iptvc <КОМАНДА> --help
|
|
./iptvc <КОМАНДА> -h
|
|
```
|
|
|
|
Список команд указан в этом разделе.
|
|
|