[20171225]變態的windows批處理4.txt--//昨天學習windows 批處理的echo &.使用它可以實現類似回車換行的功能.例子:1.echo &.R:\>echo 1111 & echo 222211112222--//但是如果寫成如下:R:\>echo 1111 & echo ...
[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批處理真是變態加變態..