Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

[AHK#31] 命令行快速開啟最近項目;使用dir, fzf, clip與AutoHotkey

$
0
0

Windows的最近的項目是記錄在 %APPDATA%\Microsoft\Windows\Recent 資料夾裡,直接查看內容就可取得最近存取檔案或目錄的捷徑:

▼ 用檔案總管檢視

start shell:recent

▼ 用命令提示字元 cmd.exe,只列出.docx的項目

pushd %APPDATA%\Microsoft\Windows\Recent
dir /od /aa *.docx
popd

需求

在命令提示字元裡快速開啟最近的項目。

作法

在命令行結合 fzf.exe(Fast Fuzzy Finder,請參考:https://youtu.be/Atp7YvwHHig影片)與clip.exe,選擇要開啟的檔案,將檔案複製到系統剪貼簿,再使用AutoHotkey的腳本開啟檔案。

fzf.exe與clip.exe在新建的recent.bat裡,叫用AutoHotkey的clip_run.ahk。

取出檔案的寫法:

dir /o-d /aa /b "*%**" | fzf | clip

✅ recent.bat 批次檔與clip_run.ahk 原始檔:

https://gist.github.com/emisjerry/a8c10d2786de152bfb9ec1bc49047a6a

解說影片

##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles