1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 04:15:27 +02:00
tldr/pages/common/transmission-create.md

26 lines
1.1 KiB
Markdown
Raw Normal View History

2020-03-23 13:50:19 +08:00
# transmission-create
> Create BitTorrent `.torrent` files.
> See also: `transmission`.
> More information: <https://manned.org/transmission-create>.
2020-03-23 13:50:19 +08:00
- Create a torrent with a specific piece size (in KB):
2020-03-23 13:50:19 +08:00
`transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}`
2020-03-23 13:50:19 +08:00
- Create a private torrent with a specific piece size (in KB):
2020-03-23 13:50:19 +08:00
`transmission-create {{[-p|--private]}} {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_announce_url}} {{[-s|--piecesize]}} {{2048}} {{path/to/file_or_directory}}`
2020-03-23 13:50:19 +08:00
- Create a torrent with a comment:
`transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-c|--comment]}} {{comment}} {{path/to/file_or_directory}}`
2020-03-23 13:50:19 +08:00
- Create a torrent with multiple trackers:
`transmission-create {{[-o|--outfile]}} {{path/to/example.torrent}} {{[-t|--tracker]}} {{tracker_url1}} {{[-t|--tracker]}} {{tracker_url2}} {{path/to/file_or_directory}}`
2020-03-23 13:50:19 +08:00
- Display help page:
2020-03-23 13:50:19 +08:00
`transmission-create {{[-h|--help]}}`