[20211011]變態的windows批處理9.txt
[20211011]變態的windows批處理9.txt
--//偶爾我會在windows下調式bash shell的指令碼,單行執行看看結果.
--//說句真心話,windows批處理太不靈活了,遇到的問題相當怪異,很容易搞錯.
--//例子:
d:\>d:\tools\linux\usr\local\wbin\echo.exe -n abcdef | tr 'a-z' "A-Z"
BCDEFG
--//什麼會輸出BCDEFG呢,實際上windows下字串使用雙引號,例子:
d:\>d:\tools\linux\usr\local\wbin\echo.exe 'a-z' "A-Z"
'a-z' A-Z
--//這樣相當於' => A a->B .....
d:\>d:\tools\linux\usr\local\wbin\echo.exe -n 'abcdef | tr 'a-z' "A-Z"
ZBCDEFG
--//' 對應 A嗎 ,怎麼變成Z.
d:\>d:\tools\linux\usr\local\wbin\echo.exe -n 'abcdef | tr 'a-f' "A-F"
FBCDEFF
--//碼錶展開
'abcdef'
ABCDEF
--//實際剩下部分的對應都是F.因為後面有出現逗號,最終 ,=>F
--//再來看一個例子:
d:\>d:\tools\linux\usr\local\wbin\echo.exe -n 'abcdef | tr 'a-f "A-F"
ABCDEFF
--//碼錶展開
'abcdef
ABCDEFF
--//實際上linux也應該注意,比如:
$ echo 1 2 3 | awk '{print $2}'
2
$ echo 1 2 3 | awk "{print $2}"
1 2 3
--//實際上awk "{print $2}"被解析為$2某個shell變數,相當於執行
$ echo 1 2 3 | awk "{print }"
1 2 3
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2795256/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20170425]變態的windows批處理1.txtWindows
- [20170425]變態的windows批處理2.txtWindows
- Windows批處理中的變數和值Windows變數
- [20171225]變態的windows批處理4.txtWindows
- [20210510]變態的windows批處理7.txtWindows
- [20190219]變態的windows批處理6.txtWindows
- Windows批處理命令Windows
- Windows批處理學習(二)——批處理(3)薦Windows
- [20211207]變態的windows批處理10.txtWindows
- [20180116]變態的windows批處理5.txtWindows
- windows批處理之一:字串處理Windows字串
- Windows批處理檔案Windows
- Windows批處理命令專題Windows
- windows sql loader批處理WindowsSQL
- 關於批處理中的變數變數
- [20170611]變態的windwos批處理3.txt
- 開啟windows批處理大門Windows
- 部分Windows批處理指令碼整理Windows指令碼
- windows批處理之三:for迴圈Windows
- windows刪除檔案的批處理操作Windows
- 在linux中生成windows的批處理LinuxWindows
- windows cmt bat批處理中的註釋WindowsBAT
- 07 Windows批處理之檔案操作Windows
- 批處理-刪除環境變數變數
- Windows 批處理之DATE命令的使用方法Windows
- 04 Windows批處理中的條件執行Windows
- windows 批處理備份目錄指令碼Windows指令碼
- Windows10系統優化(批處理)Windows優化
- windows批處理之二:基礎知識Windows
- Windows下統計埠連結數的批處理Windows
- [windows]批處理獲取時間的long型值Windows
- 批處理框架框架
- JDBC 批處理JDBC
- 碎片批處理
- 批處理命令
- 批處理概述
- 修改windows遠端桌面連線埠-批處理Windows
- Windows掃描埠連結數批處理薦Windows