[20211207]變態的windows批處理10.txt
[20211207]變態的windows批處理10.txt
--//windows cmd下命令列總是遇到一些奇怪的問題。透過例子說明:
R:\>ls -l a%b.txt
-rw-rw-rw- 1 user group 16 Dec 7 10:37 a%b.txt
R:\>xcopy a%b.txt aaa.txt
目標 aaa.txt 是檔名
還是目錄名
(F = 檔案,D = 目錄)? f
R:a%b.txt
複製了 1 個檔案
--//如果寫成批處理:
R:\>cat aa.bat
xcopy a%b.txt bbb.txt
R:\>aa
R:\>xcopy ab.txt bbb.txt
找不到檔案 - ab.txt
複製了 0 個檔案
--//你可以發現丟失了%。加入雙引號測試
R:\>cat aa.bat
xcopy "a%b.txt" bbb.txt
R:\>aa
R:\>xcopy "ab.txt" bbb.txt
找不到檔案 - ab.txt
複製了 0 個檔案
--//問題一樣。我有時候覺得windows真的很煩,命令列可以透過的方法,到了批處理不行。
--//必須使用2個百分號。
R:\>cat aa.bat
xcopy "a%%b.txt" bbb.txt
R:\>aa
R:\>xcopy "a%b.txt" bbb.txt
目標 bbb.txt 是檔名
還是目錄名
(F = 檔案,D = 目錄)? f
R:a%b.txt
複製了 1 個檔案
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2846146/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20190219]變態的windows批處理6.txtWindows
- [20211011]變態的windows批處理9.txtWindows
- [20210510]變態的windows批處理7.txtWindows
- Windows批處理中的變數和值Windows變數
- 開啟windows批處理大門Windows
- 07 Windows批處理之檔案操作Windows
- Windows 批處理之DATE命令的使用方法Windows
- 04 Windows批處理中的條件執行Windows
- 批處理-刪除環境變數變數
- windows 批處理備份目錄指令碼Windows指令碼
- Windows10系統優化(批處理)Windows優化
- 08 Windows批處理之執行編譯後的程式Windows編譯
- [20180319]windows批處理檔案大小比較.txtWindows
- 修改windows遠端桌面連線埠-批處理Windows
- [20230208]windows批處理檢測隨身碟.txtWindows
- 批處理概述
- Apache Beam,批處理和流式處理的融合!Apache
- 03 Windows批處理的作用域和延遲擴充套件Windows套件
- 10 Windows批處理之呼叫例程和bat檔案WindowsBAT
- java當中的批處理Java
- JDBC當中的批處理JDBC
- Jenkins執行遠端Windows批處理的許可權問題JenkinsWindows
- 05 Windows批處理中的字串和布林資料型別Windows字串資料型別
- 09 Windows批處理之標籤和無序執行Windows
- cmd批處理無法使用 提示windows找不到檔案Windows
- 批處理指令碼來修復並開啟Windows 7中的Windows Defender防火牆指令碼Windows防火牆
- Windows使用批處理給手機批量安裝apk檔案WindowsAPK
- 什麼是批處理
- Dynamics CRM 2013 批處理
- bat 批處理字串操作BAT字串
- window 批處理檔案
- MongoDB for Windows使用批處理檔案啟動閃退之空格惹的禍MongoDBWindows
- 06 Windows批處理之整數和浮點資料型別Windows資料型別
- Windows Ping的結果顯示每次ping的時間的bat批處理指令碼WindowsBAT指令碼
- [20221030]繫結變數的分配長度10.txt變數
- 簡單實現批處理
- Python批處理:檔案操作Python
- MPP架構和批處理架構