Last active
August 29, 2015 14:23
Revisions
-
evandbrown revised this gist
Jun 30, 2015 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,5 @@ ls *.json | \ sed -e 's/\.json//' | \ while read x; do \ ruby -ryaml -rjson -e 'puts YAML.dump(JSON.parse(STDIN.read))' < $x.json > $x.yaml; \ done -
evandbrown created this gist
Jun 30, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ ls *.json | sed -e 's/\.json//' | while read x; do ruby -ryaml -rjson -e 'puts YAML.dump(JSON.parse(STDIN.read))' < $x.json > $x.yaml; done