[20171225]變態的windows批處理4.txt
[20171225]變態的windows批處理4.txt
--//昨天學習windows 批處理的echo &.使用它可以實現類似回車換行的功能.例子:
1.echo &.
R:\>echo 1111 & echo 2222
1111
2222
--//但是如果寫成如下:
R:\>echo 1111 & echo 2222 > aa.txt
1111
R:\>cat aa.txt
2222
--//你可以發現1111,顯示輸出,而2222寫入檔案aa.txt,改寫成管道看看.
R:\>echo 1111 &echo 2222 | cat
1111
2222
--//OK.實際上這個是假象,第1行走螢幕,第2行走管道,看下面的測試就明白了.如果要寫到檔案實際上要加括號,這個跟linux有一個相似.
R:\>(echo 1111 &echo 2222 ) > aa.txt
R:\>cat aa.txt
1111
2222
--//這個倒是正常的情況.
2.利用這個特性可以透過管道傳輸命令給sqlplus.
R:\>echo set timing off head off; &echo select sysdate from dual;
set timing off head off;
select sysdate from dual;
R:\>echo set timing off head off; &echo select sysdate from dual; | sqlplus -s scott/book@78
set timing off head off;
SYSDATE
-------------------
2017-12-25 10:06:33
--//暈!!明顯set timing off head off;這行沒有經過管道輸出,而是直接輸出到螢幕.因為如果輸入管道,顯示的應該是沒有sysdate欄位名.
--//仔細看前面的例子才發現實際上echo 1111 &echo 2222 | cat 輸出1111走螢幕,而輸出2222管道,看上去顯示是正常的.
--//也就是要2行都透過管道必須使用括號.修改如下.
R:\>(echo set timing off head off; &echo select sysdate from dual; ) | sqlplus -s scott/book@78
2017-12-25 10:08:59
--//我google發現另外的寫法,在&前加入^.
R:\>echo set timing off head off;^&echo select sysdate from dual; | sqlplus -s scott/book@78
2017-12-25 10:11:57
--//確實是Ok了,但是另外的問題來了:
R:\>echo set timing off head off;^&echo select sysdate from dual; | cat
set timing off head off;
select sysdate from dual;
R:\>echo set timing off head off;^&echo select sysdate from dual; > aa.txt
R:\>cat aa.txt
set timing off head off;&echo select sysdate from dual;
--//無法理解windows的批處理,透過管道輸出2行.而使用檔案接收顯示的是set timing off head off;&echo select sysdate from dual;
--//重定向到檔案時^實際上轉義&.
set timing off head off; &echo select sysdate from dual;
--//而實際上這樣執行是不行的.
R:\>cat aa.txt | sqlplus -s scott/book@78
Enter value for echo:
SP2-0546: User requested Interrupt or EOF detected.
--//還是不好理解windows的批處理的玄妙!!在我感覺最佳的方式還是加括號比較好理解一些.
--//實際上如果能很好理解連結http://blog.itpub.net/267265/viewspace-2140599/,透過管道實際上就是單行的批處理.如果能理解這個,上面的測試
--//就能很好理解.
--//但是如果echo裡面有括號問題又來了:
R:\>(echo set timing off head off;&echo select (sysdate+1) from dual;) | sqlplus -s scott/book@78
此時不應有 from。
--//也就是)要轉義,要轉義3次.遇到這種情況不斷增加^就是了.
R:\>(echo set timing off head off;&echo select (sysdate+1^^^) from dual;) | sqlplus -s scott/book@78
2017-12-26 11:16:33
--//而前面那種方式就簡單了.
R:\>echo set timing off head off;^&echo select (sysdate+1) from dual; | sqlplus -s scott/book@78
2017-12-26 11:17:35
--//在我看來windows批處理真是變態加變態..
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2149205/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20190219]變態的windows批處理6.txtWindows
- [20211207]變態的windows批處理10.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指令碼
- 簡單實現批處理
- Python批處理:檔案操作Python
- MPP架構和批處理架構
- bat批處理常用指令碼BAT指令碼