分享至
對應的指令要怎麼下find /opt -name 'log4j*'
dos 指令 或 POWERSHELL 都可以
已邀請的邦友 {{ invite_list.length }}/5
Everything安裝這一個簡易工具,達成簡單需求。
如果沒有其他條件例如"不能安裝軟體"和"利用AD大量跑不能用GUI"等公家機關或金融單位的特殊限制。否則Everything很方便
CMD:
dir "log4j*" /s
這個要 怎麼改成 找某個目錄下面的檔案
dir "C:\XXX\log4j*" /s
dir c:\log4j* /b /s > found.txttype found.txtdel found.txt
多個 /b 差在哪
/b 顯示目錄和檔案的簡略清單,不含其他資訊。 /B參數會覆寫/w。可以查看一下微軟官方文件https://docs.microsoft.com/zh-tw/windows-server/administration/windows-commands/dir
或者cmd>help dir
IT邦幫忙