How to examine .torrent file?
I tried to examine the content of a .torrent file using a
$ od -c xyz.torrent
Some of the content of the file is in plain text like the information regarding the trackers, creation date, the encoding used,the length and the number of pieces but the 开发者_JS百科rest is encoded. Can somebody please tell me how i can examine the torrent file so that i can decode everything.
.torrent
files are bencoded dictionaries
More information
Use lstor from the pyroscope package: https://code.google.com/p/pyroscope/wiki/CommandLineTools#lstor
It pretty-prints the contents of .torrent files.
精彩评论