From 4543aec7ee9e05171ca9edc85feeab03d9303655 Mon Sep 17 00:00:00 2001 From: xc Date: Thu, 9 Oct 2025 15:52:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scalib/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scalib/main.go b/scalib/main.go index b7159ea..a06b89b 100644 --- a/scalib/main.go +++ b/scalib/main.go @@ -37,6 +37,8 @@ func main() { curPath := flag.String("f", "", "The local file path to upload") uploadPath := flag.String("u", "", "The remote upload path") flag.Parse() + // for debug + fmt.Printf("remote: %s, curPath: %s, uploadPath: %s\n", *remote, *curPath, *uploadPath) // 将服务器的信息拆分为ip和端口 harr := strings.Split(*remote, ":") dstip := harr[0]