Skip to content

connectMe

Mahdi Heidari edited this page Feb 8, 2023 · 1 revision

Simple cli proxy client for shadowsocks, vmess, vless, trojan

usage: connectMe [-h] [-l LPORT] [--v2ray] [--ss] [--proxychains] [--system] link

Simple proxy client for ss/v2ray/trojan ( default use xray-core )

positional arguments:
  link                  proxy link

options:
  -h, --help            show this help message and exit
  -l LPORT, --lport LPORT
                        start local port, default is 1080
  --v2ray               use v2ray-core
  --ss                  use shadowsocks-libev
  --proxychains         set proxychains
  --system              set system proxy

example :

connectMe --system --proxychains "vmess://blahblahblah"
  • To Stop Send CTRL + C

  • For Run in the Background

    • add an Ampersand(&) After Your Command
      OR
    • use Ctrl+Z to suspend the running process and then use bg (short for background) to send the process in the background
  • For stop

    ps aux | grep '[c]onnectMe' | awk {'print $2'} | xargs kill -SIGINT

    OR

    fg  # then CTRL+C
    

ref: Move a Foreground Process to Background