У нас вы можете посмотреть бесплатно How to install JQ command-line JSON processor on windows. или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, I will show you how to install and use jq, a command-line JSON processor, on Windows. ✅ Download Link: https://stedolan.github.io/jq/ 📌 Steps to Install jq on Windows: 1️⃣ Download jq.exe: Go to the official jq download page: 🔗 https://stedolan.github.io/jq/ Scroll down to Windows section. Download jq-win64.exe (for 64-bit Windows). Rename the file to jq.exe. 2️⃣ Create a Folder and Move jq.exe: Create a new folder C:\jq. Move the downloaded jq.exe into C:\jq. 3️⃣ Set Environment Variable for JQ: Press Win + R, type SYS, and hit Enter. Go to the Advanced tab → Click Environment Variables. Under System Variables, find Path, select it, and click Edit. Click New and add: makefile Copy code C:\jq Click OK to save changes. 4️⃣ Verify Installation: Open Command Prompt (CMD) and run: c Copy code JQ --version ✅ Output should be: Copy code jq-1.7.1 📌 Using JQ to Pretty Print JSON Once installed, you can use JQ with curl to format JSON output. 🔹 Example Command: CMD Copy code curl -s localhost:9090/API/hello | JQ ✅ Expected Output: JSON Copy code { "message": "Hello world REST API", "time": "Sat Mar 15 18:57:53 IST 2025" } 🎥 Subscribe for More Tutorials! 👍 🔔 Turn on notifications so you don't miss new videos! 🚀 #jq #JSON #Windows #CommandLine