[서버] curl URL 리턴받은 데이터 grep 하는 방법
curl은 output을 stderr로 쓰기 때문에, redirect하고, 또 백그라운드에서 수행해서 progress bar를 숨겨야한다.
예를 들어, google.com을 curl에서 expire를 grep 하고 싶다면 아래 두가지 방법으로 수행하면 된다.
curl -v --silent https://google.com/ 2>&1 | grep expire
curl -v --silent https://google.com/ --stderr - | grep expire
참고문서 https://unix.stackexchange.com/questions/166359/how-to-grep-the-output-of-curl
댓글남기기