remove useless use of cat

This commit is contained in:
nazunalika 2022-06-07 18:14:50 -07:00
parent 5c61c2081c
commit a26f7f149d
Signed by: label
GPG Key ID: 6735C0E1BD65D048
1 changed files with 1 additions and 1 deletions

View File

@ -1,2 +1,2 @@
#!/bin/bash
cat prepopulate.json | python -c 'import sys, yaml, json; print(yaml.dump(json.loads(sys.stdin.read())))' > prepopulate.yaml
python -c 'import sys, yaml, json; print(yaml.dump(json.loads(sys.stdin.read())))' < prepopulate.json > prepopulate.yaml