香港之行[202404]

去年2024年4月底去了一趟香港, 记录一下见闻(多图预警) 街景[铜锣湾 -> 时代广场-> 希慎广场-> 会展中心-> 金紫荆广场-> 回归纪念碑-> 中环 -> 天星小轮 -> 尖沙咀 ] ❮ Live Photo Shortcode Error: Could not find the required media files within this Page Bundle. Please check the filenames. JPG file specified: IMG_3356.jpg (Found: No) Video file specified (mp4 or mov): IMG_3356.mp4 (Found: No) ...

July 30, 2025 · 13 min · 2586 words · bobo

ssh终端工具(一键跳转或scp文件)

ssh终端工具(跳转/scp) 仓库地址 go-ssh-tool github地址 优点: 支持谷歌验证码 功能展示 使用前 从release下载最新go-ssh-tool.mac(或者go-ssh-tool.linux) 后缀是所使用的环境1 下载文件config.yaml(放在上面工具的相同目录)并填入自己的主机信息1 查看工具说明: ./ssh-tool.mac 列出来所有主机: ./ssh-tool.mac host 登录一个主机: ./ssh-tool.mac term -m 1 -m: 主机序号 上传文件: ./ssh-tool.mac up -m 1 -f xxxx -d /tmp -f: 是本地的一个文件 -d: 上传到主机的哪个目录 下载文件: ./ssh-tool.mac down -m 1 -s /root/anaconda-ks.cfg -s: 服务器上的文件 -t: 本地目录,可不传(默认本机) 远程执行一个命令: ./ssh-tool.mac exe -m 1 -c "cat /etc/redhat-release" -c: 是命令,若包含空格,用引号引起来 结束 由于工作中频繁登录机器和通过scp拷贝上下文件,为提升效率,做的一个小工具

October 2, 2022 · 1 min · 59 words · bobo