We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a6f08 commit 16b74f7Copy full SHA for 16b74f7
1 file changed
jq/script-03.sh
@@ -6,5 +6,5 @@ set -euo pipefail
6
# TODO: Write a command to output the name of the person, then a comma, then their profession.
7
# Your output should be exactly the string "Selma, Software Engineer", but should not contain any quote characters.
8
9
-jq -r '"\(.name), \(.profession)"' person.json
+jq -r '.name + ", " + .profession' person.json
10
0 commit comments