The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions
data.txt 에 비밀번호가 있고 소문자 a-z 와 대문자 A-Z 가 13칸 rotated 되어있다…
어… 그러니까 data.txt에 비밀번호가 있는데, 이 비밀번호가 13칸씩 rotated되어서 표기된 것이다.
즉, A =⇒N, B=⇒O, C=⇒P ….~~ Z=⇒M 라는 것이다.
이 때 tr (translate)를 사용하면 편하다.
cat data.txt | tr ‘A-Za-z’ ‘N-ZA-Mn-za-m’
비밀번호 : JVNBBFSmZwKKOP0XbFXOoW8chDz5yVRv