Skip to content
View hexiyou's full-sized avatar

Block or report hexiyou

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. go-proxy-forward-tool go-proxy-forward-tool Public

    HTTP 代理与 SOCKS5 代理互转命令行工具,使用 Go 编写,同时支持 Linux 与 Windows。 本地开启一个 HTTP 或 SOCKS5 代理服务端(前端),将流量转发到另一个 HTTP/SOCKS5 代理(后端);不指定后端时则为普通直连代理。

    Go

  2. sshproxy sshproxy Public

    利用autossh便捷创建SSH隧道wrapper脚本,对ssh -L命令的上层封装,创建本地socks或http代理隧道,本次Cygwin下完美测试通过!

    Shell 1

  3. shell-scripts shell-scripts Public

    Cygwin/WSL/Linux个人常用Shell脚本集,China mirror Repo: https://gitee.com/hexiyou/shell-scripts

    Shell 2 1

  4. autossh autossh Public

    Forked from FeeiCN/autossh

    Password-free automatic login SSH(免密登陆SSH)

    Shell 1

  5. Windows/Cygwin下使用inotifywait命令脚本示例,完... Windows/Cygwin下使用inotifywait命令脚本示例,完整模拟Linux系统inotifywait的使用逻辑。
    1
    #!/bin/bash 
    2
    
                  
    3
    #注意:本文件调用的inotifywait使用了Github上另一仓库;
    4
    ##    https://github.com/thekid/inotify-win
    5
    
                  
  6. delayexec.sh:Cygwin下专用Bash脚本,配合schta... delayexec.sh:Cygwin下专用Bash脚本,配合schtasks方便快捷从命令行创建Windows任务计划,仅运行一次,支持多种时间格式参数指定运行时间,可调用任何cmd命令和Cygwin下的命令。
    1
    #!/bin/bash
    2
    #Windows计划任务cron脚本,通过任务计划调用Cygwin执行某命令
    3
    ## Example:
    4
    ## 1. delayexec 3600 tplink  #延迟3600秒(1小时)运行tplink
    5
    ## 2. delayexec 05:30 tplink  #定时5点半运行tplink,自动识别日期,当前时刻早于指定时间,则当天执行,当前时刻晚于指定时间,则次日执行