summary refs log tree commit diff
path: root/bin/json-pretty
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2017-11-07 08:47:26 -0800
committerFranck Cuny <fcuny@twitter.com>2017-11-07 08:47:26 -0800
commit28cadb970ca0b1ae6cde58d09eadb6af89999ddf (patch)
tree3f3d0096bc041ed74868872c43beb9612afebc75 /bin/json-pretty
parent[emacs] add scala-mode (diff)
downloademacs.d-28cadb970ca0b1ae6cde58d09eadb6af89999ddf.tar.gz
Remove bin, this is now in it's own repo
Diffstat (limited to '')
-rwxr-xr-xbin/json-pretty10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/json-pretty b/bin/json-pretty
deleted file mode 100755
index e536fd0..0000000
--- a/bin/json-pretty
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-URL=$1
-
-if [[ -z "${URL}" ]]; then
-  echo "usage: $0 <URL>"
-  exit 1
-fi
-
-curl -s "${1}" | python -m json.tool