1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-30 10:57:12 -07:00
rc/sh/rot13

17 lines
269 B
Bash

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
rot13() { ### @-
### rot13 with numbers rotated as well.
###
### ```
### $ rot13 <<< abc123
### nop678
### ```
tr -- A-Za-z0-9 N-ZA-Mn-za-m5-90-4
}
[ "${SOURCING:-0}" -gt 0 ] || rot13 "$@"