#!/bin/bash
echo ENCRYPT/DECRYPT ROT13:
read X
echo "$X" | tr '[A-Za-z]' '[N-ZA-Mn-za-m]'
read -n1
