Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 282 Bytes

level11.md

File metadata and controls

10 lines (6 loc) · 282 Bytes

level11

the cipher ROT13 rotates all letters by 13 characters.

we use the tr command to translate letters. eg. tr 'a' 'z' converts all a's to z's.

cat data.txt | tr '[A-Za-z]' '[N-ZA-Mn-za-m]' this command would reverse the rot13 cipher.

save the psswd and exit.