最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1

命令行JSON處理器

  • 軟件大小:962KB
  • 軟件語言:英文軟件
  • 軟件類型:國外軟件
  • 軟件授權(quán):免費軟件
  • 軟件類別:編程其它
  • 應(yīng)用平臺:Windows平臺
  • 更新時間:2025-05-30
  • 網(wǎng)友評分:
360通過 騰訊通過 金山通過

情介紹

jq是一個輕量級且靈活的命令行JSON處理器。

jq類似于用于JSON數(shù)據(jù)的sed——你可以使用它來切片、過濾、映射和轉(zhuǎn)換結(jié)構(gòu)化數(shù)據(jù),就像sed、awk、grep和朋友們讓你玩文本一樣簡單。

jq是用可移植C編寫的,它沒有運行時依賴關(guān)系。您可以下載一個二進制文件,將其scp到同一類型的遠程機器上,并期望它能夠工作。

jq可以毫不費力地將您擁有的數(shù)據(jù)格式轉(zhuǎn)換為您想要的格式,并且執(zhí)行此操作的程序通常比您預(yù)期的更短、更簡單。

JQ使用方法

下載適合 Windows 的 jq

為了在 Windows 上使用 jq,需要先從官方網(wǎng)站或其他可信資源下載適用于 Windows 的可執(zhí)行文件。通常可以找到 .exe 文件版本。

可以從本站下載或者從官方網(wǎng)站下載jq.exe

選擇與系統(tǒng)架構(gòu)相匹配的壓縮包(例如 jq-win64.exe 對于 64 位系統(tǒng)),并將其解壓到本地磁盤中的合適位置。

下載的文件名為 jq-windows-amd64.exe 可以修改為 jq.exe,方便調(diào)用。

type old.json | jq.exe >> C:\Users\LTH\Desktop>new.json

old.json是你要格式化的文件,new.json是格式化完后的文件。

EZ,搞定了。

配置環(huán)境變量以便全局調(diào)用

為了讓命令提示符能夠識別 jq 并允許在整個計算機范圍內(nèi)運行此程序而無需指定完整路徑:

  • 將解壓后的 jq.exe 所處目錄添加至系統(tǒng)的 PATH 環(huán)境變量中;
  • 或者直接把 jq.exe 移動到已存在于 PATH 中的一個現(xiàn)有文件夾內(nèi),比如 C:\Windows\System32\.

完成以上設(shè)置后,在任意 CMD 或 PowerShell 終端窗口輸入 jq --version 來驗證是否成功加載該軟件及其具體版本號。

測試安裝

一旦完成了上述步驟,則可以通過打開一個新的命令行會話來測試 jq 是否正常工作。嘗試打印幫助信息以確認一切就緒:

jq --help

如果顯示了詳細的幫助文檔說明,則表明 jq 已經(jīng)被正確安裝并且可以在 Windows 上正常使用了。

jq命令行參數(shù)

jq --help
jq - commandline JSON processor [version 1.7.1]
Usage:  jq [options] <jq filter> [file...]
        jq [options] --args <jq filter> [strings...]
        jq [options] --jsonargs <jq filter> [JSON_TEXTS...]
jq is a tool for processing JSON inputs, applying the given filter to
its JSON text inputs and producing the filter's results as JSON on
standard output.
The simplest filter is ., which copies jq's input to its output
unmodified except for formatting. For more advanced filters see
the jq(1) manpage ("man jq") and/or https://jqlang.github.io/jq/.
Example:
        $ echo '{"foo": 0}' | jq .
        {
          "foo": 0
        }
Command options:
  -n, --null-input          use `null` as the single input value;
  -R, --raw-input           read each line as string instead of JSON;
  -s, --slurp               read all inputs into an array and use it as
                            the single input value;
  -c, --compact-output      compact instead of pretty-printed output;
  -r, --raw-output          output strings without escapes and quotes;
      --raw-output0         implies -r and output NUL after each output;
  -j, --join-output         implies -r and output without newline after
                            each output;
  -a, --ascii-output        output strings by only ASCII characters
                            using escape sequences;
  -S, --sort-keys           sort keys of each object on output;
  -C, --color-output        colorize JSON output;
  -M, --monochrome-output   disable colored output;
      --tab                 use tabs for indentation;
      --indent n            use n spaces for indentation (max 7 spaces);
      --unbuffered          flush output stream after each output;
      --stream              parse the input value in streaming fashion;
      --stream-errors       implies --stream and report parse error as
                            an array;
      --seq                 parse input/output as application/json-seq;
  -f, --from-file file      load filter from the file;
  -L directory              search modules from the directory;
      --arg name value      set $name to the string value;
      --argjson name value  set $name to the JSON value;
      --slurpfile name file set $name to an array of JSON values read
                            from the file;
      --rawfile name file   set $name to string contents of file;
      --args                consume remaining arguments as positional
                            string values;
      --jsonargs            consume remaining arguments as positional
                            JSON values;
  -e, --exit-status         set exit status code based on the output;
  -b, --binary              open input/output streams in binary mode;
  -V, --version             show the version;
  --build-configuration     show jq's build configuration;
  -h, --help                show the help;
  --                        terminates argument processing;
Named arguments are also available as $ARGS.named[], while
positional arguments are available as $ARGS.positional[].

更新日志

13 December 2023

jq 1.7.1 released. Security (CVE-2023-50246, CVE-2023-50268) and bug fixes. See release notes for details.

7 September 2023

After a five-year hiatus, we've returned with a revitalized GitHub organization and a much-anticipated 1.7 release, thanks to our new admins and maintainers. Check out the download page for installation options and see the release notes for details.

  • jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1

載地址

下載錯誤?【投訴報錯】

jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1

      氣軟件

      關(guān)文章

      • BIP-0039 助記詞詞本 打包
        BIP-0039 助記詞詞本 打包

        助記詞(mnemonic phrase)是從一個固定的單詞列表中選出的12、15、18、21或24個單詞,這些單詞按照順序排列,可用于備份和恢復(fù)加密貨幣錢包...

      • Mathworks MATLAB R2025a v25.1.0.2943329 最新中文正式免費版(附安裝教程)
        Mathworks MATLAB R2025a v25.1.0.2943329 最新中文正式免費版(附安裝教程)

        MATLAB R2025a 已具備強大的科學(xué)計算與工業(yè)仿真能力,尤其是其 Simulink 工具箱,在動態(tài)系統(tǒng)建模與仿真方面具有顯著優(yōu)勢,MATLAB R2025a 最新版引入了全新 MATLAB Copilot ...

      • jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1
        jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1

        jq是一個輕量級且靈活的命令行JSON處理器,他可以毫不費力地將您擁有的數(shù)據(jù)格式轉(zhuǎn)換為您想要的格式,并且執(zhí)行此操作的程序通常比您預(yù)期的更短、更簡單...

      • 網(wǎng)易y3編輯器 v2.5.3 安裝免費版
        網(wǎng)易y3編輯器 v2.5.3 安裝免費版

        網(wǎng)易Y3編輯器是一款以行業(yè)頂級Messiah引擎為基底的高效游戲創(chuàng)作工具,專為降低游戲開發(fā)門檻而設(shè)計,編輯器提供超萬項免費資源庫,涵蓋角色、特效、音效等全品類素材,并支...

      • 阿里云WEF API調(diào)用工具 GUI版本 v1.0 綠色免費版
        阿里云WEF API調(diào)用工具 GUI版本 v1.0 綠色免費版

        阿里云WEF API調(diào)用工具是一款Web應(yīng)用防火墻,通過調(diào)用阿里云密鑰AccessKey ID、AccessKey Secret,然后可以直接控制阿里云WAF,操作便捷,歡迎需要的朋友下載使用...

      • Mathworks Matlab R2024b v24.2.0.2712019 中文正式免費版(附安裝教程)
        Mathworks Matlab R2024b v24.2.0.2712019 中文正式免費版(附安裝教程)

        MATLAB R2024b由全球領(lǐng)先的數(shù)學(xué)計算軟件開發(fā)商 MathWorks正式發(fā)布了,新版R2024b 推出了幾項重要更新,幫助從事無線通信系統(tǒng)、控制系統(tǒng)和數(shù)字信號處理應(yīng)用的工程師和研究人...

      載聲明

      ☉ 解壓密碼:m.fzitv.net 就是本站主域名,希望大家看清楚,[ 分享碼的獲取方法 ]可以參考這篇文章
      ☉ 推薦使用 [ 迅雷 ] 下載,使用 [ WinRAR v5 ] 以上版本解壓本站軟件。
      ☉ 如果這個軟件總是不能下載的請在評論中留言,我們會盡快修復(fù),謝謝!
      ☉ 下載本站資源,如果服務(wù)器暫不能下載請過一段時間重試!或者多試試幾個下載地址
      ☉ 如果遇到什么問題,請評論留言,我們定會解決問題,謝謝大家支持!
      ☉ 本站提供的一些商業(yè)軟件是供學(xué)習(xí)研究之用,如用于商業(yè)用途,請購買正版。
      ☉ 本站提供的jq.exe 一個輕量級且靈活的命令行JSON處理器 v1.7.1資源來源互聯(lián)網(wǎng),版權(quán)歸該下載資源的合法擁有者所有。

      靖州| 南部县| 凤翔县| 子洲县| 长葛市| 阜平县| 黎平县| 颍上县| 波密县| 毕节市| 岳西县| 梓潼县| 宁晋县| 虞城县| 永靖县| 九龙县| 海淀区| 张家港市| 承德县| 揭东县| 图们市| 丹东市| 太保市| 正定县| 双江| 柳江县| 永寿县| 喀什市| 双辽市| 黔西县| 禹州市| 清原| 临城县| 韩城市| 芦山县| 梓潼县| 旬邑县| 玉溪市| 江陵县| 西平县| 衡南县|