diff --git a/README.md b/README.md index 85f0b71..8084b26 100644 --- a/README.md +++ b/README.md @@ -134,9 +134,8 @@ Usage: jsonlite command ``` ➜ jsonlite JSONlite 1.0.0 - set is using: json_reformat (fastest) - -Data directory path: /tmp/jsonlite.data + - Set is using: json_reformat (fastest) + - Data directory path: /tmp/jsonlite.data Usage: jsonlite command diff --git a/jsonlite.bash b/jsonlite.bash index 970babf..736beac 100755 --- a/jsonlite.bash +++ b/jsonlite.bash @@ -29,15 +29,14 @@ jsonlite_info() { jsonlite_version if command -v json_reformat > /dev/null 2>&1; then - echo " set is using: json_reformat (fastest)" + echo " - Set is using: json_reformat (fastest)" elif command -v jq > /dev/null 2>&1; then - echo " set is using: jq (fast)" + echo " - Set is using: jq (fast)" else - echo " set is using: python -m json.tool (slow)" + echo " - Set is using: python -m json.tool (slowest)" fi - echo - echo "Data directory path: $JSONLITE_DATA_DIR" + echo " - Data directory path: $JSONLITE_DATA_DIR" echo }