mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 11:26:00 +02:00
transmission-create: add page (#3916)
This commit is contained in:
parent
a041034a98
commit
d8ab1cfe97
1 changed files with 24 additions and 0 deletions
24
pages/common/transmission-create.md
Normal file
24
pages/common/transmission-create.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# transmission-create
|
||||
|
||||
> A CLI utility to create BitTorrent .torrent files.
|
||||
> More information: <https://linux.die.net/man/1/transmission-create>.
|
||||
|
||||
- Create a torrent with 2048 KB as the piece size:
|
||||
|
||||
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_announce_url}} --piecesize {{2048}} {{path/to/file_or_directory}}`
|
||||
|
||||
- Create a private torrent with a 2048 KB piece size:
|
||||
|
||||
`transmission-create -p -o {{path/to/example.torrent}} --tracker {{tracker_announce_url}} --piecesize {{2048}} {{path/to/file_or_directory}}`
|
||||
|
||||
- Create a torrent with a comment:
|
||||
|
||||
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_url1}} -c {{comment}} {{path/to/file_or_directory}}`
|
||||
|
||||
- Create a torrent with multiple trackers:
|
||||
|
||||
`transmission-create -o {{path/to/example.torrent}} --tracker {{tracker_url1}} --tracker {{tracker_url2}} {{path/to/file_or_directory}}`
|
||||
|
||||
- Show help page:
|
||||
|
||||
`transmission-create --help`
|
Loading…
Add table
Reference in a new issue