-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
140 additions
and
61 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,3 +191,4 @@ pip-wheel-metadata/ | |
.idea | ||
*.swp | ||
Pipfile.lock | ||
artifacts |
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
#!/bin/bash | ||
|
||
echo "Query with old format" | ||
./dist/wildq --hcl examples/hcl.hcl . | jq . | ||
./dist/wildq --ini examples/ini.ini . | jq . | ||
./dist/wildq --json examples/json.json . | jq . | ||
./dist/wildq --toml examples/toml.toml . | jq . | ||
./dist/wildq --xml examples/xml.xml . | jq . | ||
./dist/wildq --yaml examples/yaml.yaml . | jq . | ||
./artifacts/binaries/wildq --hcl examples/hcl.hcl . | jq . | ||
./artifacts/binaries/wildq --ini examples/ini.ini . | jq . | ||
./artifacts/binaries/wildq --json examples/json.json . | jq . | ||
./artifacts/binaries/wildq --toml examples/toml.toml . | jq . | ||
./artifacts/binaries/wildq --xml examples/xml.xml . | jq . | ||
./artifacts/binaries/wildq --yaml examples/yaml.yaml . | jq . | ||
|
||
echo "Query with same in and out" | ||
./dist/wildq -i hcl examples/hcl.hcl . | ||
./dist/wildq -i ini examples/ini.ini . | ||
./dist/wildq -i json examples/json.json . | ||
./dist/wildq -i toml examples/toml.toml . | ||
./dist/wildq -i xml examples/xml.xml . | ||
./dist/wildq -i yaml examples/yaml.yaml . | ||
./artifacts/binaries/wildq -i hcl examples/hcl.hcl . | ||
./artifacts/binaries/wildq -i ini examples/ini.ini . | ||
./artifacts/binaries/wildq -i json examples/json.json . | ||
./artifacts/binaries/wildq -i toml examples/toml.toml . | ||
./artifacts/binaries/wildq -i xml examples/xml.xml . | ||
./artifacts/binaries/wildq -i yaml examples/yaml.yaml . | ||
|
||
echo "Query with json out" | ||
./dist/wildq -i hcl -o json examples/hcl.hcl . | ||
./dist/wildq -i ini -o json examples/ini.ini . | ||
./dist/wildq -i json -o json examples/json.json . | ||
./dist/wildq -i toml -o json examples/toml.toml . | ||
./dist/wildq -i xml -o json examples/xml.xml . | ||
./dist/wildq -i yaml -o json examples/yaml.yaml . | ||
./artifacts/binaries/wildq -i hcl -o json examples/hcl.hcl . | ||
./artifacts/binaries/wildq -i ini -o json examples/ini.ini . | ||
./artifacts/binaries/wildq -i json -o json examples/json.json . | ||
./artifacts/binaries/wildq -i toml -o json examples/toml.toml . | ||
./artifacts/binaries/wildq -i xml -o json examples/xml.xml . | ||
./artifacts/binaries/wildq -i yaml -o json examples/yaml.yaml . | ||
|
||
echo "Query with yaml out" | ||
./dist/wildq -i hcl -o yaml examples/hcl.hcl . | ||
./dist/wildq -i ini -o yaml examples/ini.ini . | ||
./dist/wildq -i json -o yaml examples/json.json . | ||
./dist/wildq -i toml -o yaml examples/toml.toml . | ||
./dist/wildq -i xml -o yaml examples/xml.xml . | ||
./dist/wildq -i yaml -o yaml examples/yaml.yaml . | ||
./artifacts/binaries/wildq -i hcl -o yaml examples/hcl.hcl . | ||
./artifacts/binaries/wildq -i ini -o yaml examples/ini.ini . | ||
./artifacts/binaries/wildq -i json -o yaml examples/json.json . | ||
./artifacts/binaries/wildq -i toml -o yaml examples/toml.toml . | ||
./artifacts/binaries/wildq -i xml -o yaml examples/xml.xml . | ||
./artifacts/binaries/wildq -i yaml -o yaml examples/yaml.yaml . |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = "1.1.0" | ||
version = "1.1.2" |