วิธี grep ผลลัพธ์ของ cURL?


70

ฉันต้องดึงวันหมดอายุของใบรับรอง SSL curlแอพลิเคชันไม่ให้ข้อมูลนี้:

$ curl -v https://google.com/
* Hostname was NOT found in DNS cache
*   Trying 212.179.180.121...
* Connected to google.com (212.179.180.121) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using ECDHE-ECDSA-AES128-GCM-SHA256
* Server certificate:
*        subject: C=US; ST=California; L=Mountain View; O=Google Inc; CN=*.google.com
*        start date: 2014-10-22 13:04:07 GMT
*        expire date: 2015-01-20 00:00:00 GMT
*        subjectAltName: google.com matched
*        issuer: C=US; O=Google Inc; CN=Google Internet Authority G2
*        SSL certificate verify ok.
> GET / HTTP/1.1
> User-Agent: curl/7.35.0
> Host: google.com
> Accept: */*
> 
< HTTP/1.1 302 Found
< Cache-Control: private
< Content-Type: text/html; charset=UTF-8
< Location: https://www.google.co.il/?gfe_rd=cr&ei=HkxbVMzCM-WkiAbU6YCoCg
< Content-Length: 262
< Date: Thu, 06 Nov 2014 10:23:26 GMT
* Server GFE/2.0 is not blacklisted
< Server: GFE/2.0
< 
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="https://www.google.co.il/?gfe_rd=cr&amp;ei=HkxbVMzCM-WkiAbU6YCoCg">here</A>.
</BODY></HTML>
* Connection #0 to host google.com left intact

อย่างไรก็ตามเมื่อท่อส่งออกผ่านgrepผลที่ได้คือข้อมูลไม่น้อยบนหน้าจอ แต่ค่อนข้างมาก :

$ curl -v https://google.com/ | grep expire
* Hostname was NOT found in DNS cache
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 212.179.180.84...
* Connected to google.com (212.179.180.84) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
} [data not shown]
* SSLv3, TLS handshake, Server hello (2):
{ [data not shown]
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0* SSLv3, TLS handshake, CERT (11):
{ [data not shown]
* SSLv3, TLS handshake, Server key exchange (12):
{ [data not shown]
* SSLv3, TLS handshake, Server finished (14):
{ [data not shown]
* SSLv3, TLS handshake, Client key exchange (16):
} [data not shown]
* SSLv3, TLS change cipher, Client hello (1):
} [data not shown]
* SSLv3, TLS handshake, Finished (20):
} [data not shown]
* SSLv3, TLS change cipher, Client hello (1):
{ [data not shown]
* SSLv3, TLS handshake, Finished (20):
{ [data not shown]
* SSL connection using ECDHE-ECDSA-AES128-GCM-SHA256
* Server certificate:
*        subject: C=US; ST=California; L=Mountain View; O=Google Inc; CN=*.google.com
*        start date: 2014-10-22 13:04:07 GMT
*        expire date: 2015-01-20 00:00:00 GMT
*        subjectAltName: google.com matched
*        issuer: C=US; O=Google Inc; CN=Google Internet Authority G2
*        SSL certificate verify ok.
> GET / HTTP/1.1
> User-Agent: curl/7.35.0
> Host: google.com
> Accept: */*
> 
< HTTP/1.1 302 Found
< Cache-Control: private
< Content-Type: text/html; charset=UTF-8
< Location: https://www.google.co.il/?gfe_rd=cr&ei=IkxbVMy4K4OBbKuDgKgF
< Content-Length: 260
< Date: Thu, 06 Nov 2014 10:23:30 GMT
* Server GFE/2.0 is not blacklisted
< Server: GFE/2.0
< 
{ [data not shown]
100   260  100   260    0     0    714      0 --:--:-- --:--:-- --:--:--   714
* Connection #0 to host google.com left intact

ฉันสงสัยว่าcurlตรวจพบว่าไม่ได้พิมพ์ไปยังเทอร์มินัลและให้เอาต์พุตที่แตกต่างกันซึ่งไม่ใช่ทั้งหมดที่ได้รับการยอมรับgrepว่าเป็นstdoutและถูกส่งผ่านไปยังเทอร์มินัล อย่างไรก็ตามสิ่งที่ใกล้กับที่ฉันสามารถหาในman curl (! ไม่เคย google สำหรับที่)คือ:

PROGRESS METER
   curl  normally  displays  a  progress meter during operations, indicating the amount of transferred data, transfer speeds and estimated time
   left, etc.

   curl displays this data to the terminal by default, so if you invoke curl to do an operation and it is about to write data to the  terminal,
   it disables the progress meter as otherwise it would mess up the output mixing progress meter and response data.

   If you want a progress meter for HTTP POST or PUT requests, you need to redirect the response output to a file, using shell redirect (>), -o
   [file] or similar.

   It is not the same case for FTP upload as that operation does not spit out any response data to the terminal.

   If you prefer a progress "bar" instead of the regular meter, -# is your friend.

ฉันจะได้รับเพียงแค่expiryสายออกจากการcurlส่งออกได้อย่างไร นอกจากนี้ฉันควรอ่านอะไรเพื่อให้เข้าใจสถานการณ์ดีขึ้น?

ดูเหมือนว่านี้จะเป็นกรณีการใช้งานที่ดีสำหรับการเป็น "stdmeta" ไฟล์อธิบาย



@EladKarako: ขอบคุณ นั่นเป็นคำตอบที่ดี แต่ไม่สามารถใช้ได้กับสถานการณ์นี้ บางทีเชลล์ของ Windows อาจไม่มีแนวคิดของตัวจัดการไฟล์เอาต์พุตแยกกัน แต่เป็นกรณีอื่นในเชลล์ Linux
dotancohen

1
ฉันรู้สึกว่าถูกบังคับให้ต้องระมัดระวังลมและกูเกิ้ลก็ยังขดตัวอยู่ ฉันมั่นใจว่าจะต้องส่งคืนผลลัพธ์ที่คุ้มค่า
JeremyCanfield

คำตอบ:


105

curl เขียนเอาต์พุตไปยัง stderr ดังนั้นให้เปลี่ยนเส้นทางและระงับความคืบหน้าด้วย:

curl -v --silent https://google.com/ 2>&1 | grep expire

เหตุผลที่curlเขียนข้อมูลไปยัง stderr คือคุณสามารถทำได้
curl <url> | someprgramโดยไม่มีข้อมูลนั้นขัดขวางการป้อนข้อมูลsomeprogram


2
-v ใช้กลอุบายของ verbose .. ขอบคุณ
astroanu

2
ไม่จำเป็นสำหรับ-vคุณที่จะใช้ท่อข้อความจำนวนมาก .. โดยเฉพาะอย่างยิ่งการเปลี่ยนเส้นทางหลายครั้งและการจับมือ SSL และการแลกเปลี่ยนใบรับรอง !! คุณควรใช้อย่างใดอย่างหนึ่ง--includeเพียงแค่เพิ่มส่วนหัวในร่างกายของการตอบสนองหรือดีกว่ายังใช้--headคุณยังดีกว่าลบ\rในตอนท้ายถ้าคุณวางแผนที่จะเก็บค่าในตัวแปรหรือส่งไปยังเอาท์พุทในภายหลัง (ดู ความคิดเห็นด้านบนพร้อมContent-Lengthตัวอย่าง)

19

เป็นไปได้ที่จะใช้--stderr -เป็นพารามิเตอร์เพื่อเปลี่ยนเส้นทางเอาต์พุตจาก stderr (ค่าเริ่มต้น) ไปยัง stdout ด้วยตัวเลือกนี้คุณควรใช้--silentเพื่อระงับแถบความคืบหน้า

$ curl -v --silent https://google.com/ --stderr - | grep expire
*    expire date: 2015-09-01 00:00:00 GMT
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.