5

I have installed TBB, but I need use the command line tor. TBB is working, and some project use python to start tor is also working(such as this https://github.com/realgam3/pymultitor)

Find the location,

tor -h, show nothing:

parameter found from https://www.torproject.org/docs/tor-manual.html.en.

enter image description here

If I just type tor, can see it run in backgroud(in task manager). But I want to see the detail.

Mithril
  • 151
  • 1
  • 1
  • 4

2 Answers2

7

This is a bug related to Windows' cmd.exe, the Tor processes doesn't print output as expected.

One way around print out the resulting commands values is to pipe (|) it into the more command e.g.

tor.exe -h | more
cacahuatl
  • 11,047
  • 2
  • 17
  • 39
0

another solution is to just run tor.exe from Cygwin: enter image description here

i don't know why exactly, but Cygwin has no problem reading the output from tor.exe

hanshenrik
  • 101
  • 1