웹/Spring

httpie '<' 연산자는 나중에 사용하도록 예약되어 있습니다.

컴퓨터과학 2022. 8. 16. 21:02

httpie '<' The operator is reserved for future use.

 

인텔리제이에서 터미널에서 httpie 사용중에 특정 json데이터 입력시 발생 에러였는데요

 

ex)

http PATCH localhost:8080/shops/1/items < items.json

'<' 연산자는 나중에 사용하도록 예약되어 있습니다. 라는 에러 발생

https://stackoverflow.com/questions/2148746/the-operator-is-reserved-for-future-use

 

The '<' operator is reserved for future use

I am using PowerShell and am trying to run the following command: .\test_cfdp.exe < test.full | tee test.log test.full is a script that mimics command line inputs to test_cfdp.exe. However, I...

stackoverflow.com

 

해결법은 

cmd /c 'http PATCH localhost:8080/shops/1/items < items.json'

파워쉘로 연결된 상태여서 그런것 같습니다.