diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-02-18 10:15:59 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-02-18 10:15:59 +1300 |
commit | 36e070ee25ab09ecb9b38dd7f2c5cd8de0073c10 (patch) | |
tree | 3eeb285b22b533dcd67ad3680f422882be7e30fe /bin | |
parent | 2e7b29ce20c3eb7eaa0cddf6e1188c80e7c1d1b1 (diff) | |
download | mitmproxy-36e070ee25ab09ecb9b38dd7f2c5cd8de0073c10.tar.gz mitmproxy-36e070ee25ab09ecb9b38dd7f2c5cd8de0073c10.tar.bz2 mitmproxy-36e070ee25ab09ecb9b38dd7f2c5cd8de0073c10.zip |
Pull bin to the top, move pathod examples to examples dir
Diffstat (limited to 'bin')
-rw-r--r-- | bin/mitmdump | 3 | ||||
-rwxr-xr-x | bin/mitmproxy | 3 | ||||
-rwxr-xr-x | bin/mitmweb | 4 | ||||
-rwxr-xr-x | bin/pathoc | 6 | ||||
-rwxr-xr-x | bin/pathod | 6 |
5 files changed, 22 insertions, 0 deletions
diff --git a/bin/mitmdump b/bin/mitmdump new file mode 100644 index 00000000..2483be4f --- /dev/null +++ b/bin/mitmdump @@ -0,0 +1,3 @@ +#!/usr/bin/env python +from mitmproxy.main import mitmdump +mitmdump() diff --git a/bin/mitmproxy b/bin/mitmproxy new file mode 100755 index 00000000..a3d7615d --- /dev/null +++ b/bin/mitmproxy @@ -0,0 +1,3 @@ +#!/usr/bin/env python +from mitmproxy.main import mitmproxy +mitmproxy() diff --git a/bin/mitmweb b/bin/mitmweb new file mode 100755 index 00000000..14188a33 --- /dev/null +++ b/bin/mitmweb @@ -0,0 +1,4 @@ +#!/usr/bin/env python +from mitmproxy.main import mitmweb + +mitmweb() diff --git a/bin/pathoc b/bin/pathoc new file mode 100755 index 00000000..ab62d631 --- /dev/null +++ b/bin/pathoc @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from pathod import pathoc_cmdline as cmdline + +if __name__ == "__main__": + cmdline.go_pathoc() diff --git a/bin/pathod b/bin/pathod new file mode 100755 index 00000000..af0c118b --- /dev/null +++ b/bin/pathod @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from pathod import pathod_cmdline as cmdline + +if __name__ == "__main__": + cmdline.go_pathod() |