mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:39:03 -08:00
19 lines
402 B
Bash
Executable file
19 lines
402 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
# YES_BASH
|
|
# YES_DASH
|
|
|
|
rot13() { ### @-
|
|
### rot13 with numbers rotated as well.
|
|
###
|
|
### ```
|
|
### $ rot13 <<< abc123
|
|
### nop678
|
|
### ```
|
|
###
|
|
### **NOTE:** there also exists rot13(1) programs provided by
|
|
### the *bsdgames* and *hxtools* packages that i don't use.
|
|
tr -- A-Za-z0-9 N-ZA-Mn-za-m5-90-4
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || rot13 "$@"
|