Skip to content
Snippets Groups Projects
clean_json.sh 146 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    sed 's/\\u00a0/ /g' -i "$@"
    sed 's,\\n\\n, ,g' -i "$@"
    sed 's,\\n , ,g' -i "$@"
    sed 's, \\n, ,g' -i "$@"
    sed -e 's/^[ \t]*//' -i "$@"