From 241c252cedc97b9f6700e56a8adb5a57f64025c6 Mon Sep 17 00:00:00 2001 From: Rising Felix Date: Tue, 14 Mar 2023 17:58:17 -0700 Subject: [PATCH] commit --- 0x03-shell_variables_expansions/101-rot13 | 2 +- 0x03-shell_variables_expansions/tr | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 0x03-shell_variables_expansions/tr diff --git a/0x03-shell_variables_expansions/101-rot13 b/0x03-shell_variables_expansions/101-rot13 index 96581c1..c389e16 100755 --- a/0x03-shell_variables_expansions/101-rot13 +++ b/0x03-shell_variables_expansions/101-rot13 @@ -1,2 +1,2 @@ #!/bin/bash -tr `echo {a..z} | tr -d ' '` `echo {n..z} $(echo {a..m} | tr -d ' '` | tr `echo {A..Z} | tr -d ' '` `echo {N..Z} $(echo {A..M}) | tr -d ' '` + tr 'a-zA-Z' 'n-za-mN-ZA-N' diff --git a/0x03-shell_variables_expansions/tr b/0x03-shell_variables_expansions/tr new file mode 100644 index 0000000..464e2db --- /dev/null +++ b/0x03-shell_variables_expansions/tr @@ -0,0 +1 @@ +Hello a-zA-Z n-za-mN-ZA-N