Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ph0cx committed Mar 15, 2023
1 parent 395ec28 commit 241c252
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 0x03-shell_variables_expansions/101-rot13
Original file line number Diff line number Diff line change
@@ -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'
1 change: 1 addition & 0 deletions 0x03-shell_variables_expansions/tr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello a-zA-Z n-za-mN-ZA-N

0 comments on commit 241c252

Please sign in to comment.