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 3bc8676 commit 46a2c90Copy full SHA for 46a2c90
.github/workflows/test-sdc-tasks.yml
@@ -1,6 +1,11 @@
1
name: Test SDC Tasks
2
3
on:
4
+ push:
5
+ paths:
6
+ - 'individual-shell-tools/**.sh'
7
+ - 'shell-pipelines/**.sh'
8
+ - 'jq/*.sh'
9
pull_request_target:
10
paths:
11
- 'individual-shell-tools/**.sh'
individual-shell-tools/awk/script-01.sh
@@ -4,4 +4,4 @@ set -euo pipefail
# TODO: Write a command to output just the names of each player in `scores-table.txt`.
# Your output should contain 6 lines, each with just one word on it.
-awk '{print $2}' scores-table.txt
+awk '{print $1}' scores-table.txt
0 commit comments