0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

「jo」コマンドublinuxにインストールしてみた

Posted at

はじめに

JSON整形に便利な「jo」コマンド、ubilinux環境への導入メモ

環境

OS

  • ubilinux@edison (debian 7.11)
  • git, gcc, make 等の開発環境はインストール済

インストール

git clone git://github.com/jpmens/jo.git
cd jo
autoreconf -i
./configure
make check
sudo make install

動作確認

$  seq 1 10 | jo -a | jq .
[
  1,
  2,
  3,
  4,
  5,
  6,
  7,
  8,
  9,
  10
]

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?