suer 在 在终端快速选择文具的小工具 qfmenu, 一款11年前的小工具, 惊呆了 中发帖
文件下载地址: 快速文件夹菜单 - Ramen Software
源码地址: m417z/Quick-Folder-Menu: Quick Folder Menu is a tiny application that opens a menu of the folder you specify as a command line parameter.
当你在控制台输入 qfmenu [dir_path] 时 会在鼠标所在位置弹出一个 dir_path 目录下的文件清单供你选择, 日常开发使用 很方便
[image]
同时我写了一个增强的bat脚本(z.bat), 支持相对路径,后续可能会增加打开 explorer:
@echo off
setlocal
if "%~1"=="--help" (
goto help
)
if "%~1"=="-h" (
goto hel...