Skip to content

Commit 25db0ac

Browse files
committed
simplify solution for script-02.sh
1 parent 89e879b commit 25db0ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

individual-shell-tools/awk/script-02.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -euo pipefail
44

55
# TODO: Write a command to output the names of each player, as well as their city.
66
# Your output should contain 6 lines, each with two words on it, separated by a space.
7-
awk -F' ' '{print $1, $2}' scores-table.txt
7+
awk '{print $1, $2}' scores-table.txt

0 commit comments

Comments
 (0)