[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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20170425]變態的windows批處理1.txtWindows
- [20170425]變態的windows批處理2.txtWindows
- Windows批處理中的變數和值Windows變數
- [20210510]變態的windows批處理7.txtWindows
- [20190219]變態的windows批處理6.txtWindows
- Windows批處理命令Windows
- Windows批處理學習(二)——批處理(3)薦Windows
- [20211207]變態的windows批處理10.txtWindows
- [20211011]變態的windows批處理9.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