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 bab2dd1 commit 8d0df7eCopy full SHA for 8d0df7e
shell-pipelines/tr/script-01.sh
@@ -6,3 +6,4 @@ set -euo pipefail
6
# The author got feedback that they're using too many exclamation marks (!).
7
#
8
# TODO: Write a command to output the contents of text.txt with every exclamation mark (!) replaced with a full-stop (.).
9
+ cat text.txt | tr '!' "."
shell-pipelines/tr/script-02.sh
@@ -7,3 +7,4 @@ set -euo pipefail
# so every Y should be a Z, and every Z should be a Y!
# TODO: Write a command to output the contents of text.txt with every Y and Z swapped (both upper and lower case).
10
+tr 'YyZz' 'ZzYy' <text.txt
0 commit comments