Guest User

Untitled

a guest
Aug 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. chr() {
  2. [ "$1" -lt 256 ] || return 1
  3. printf "\\$(printf '%03o' "$1")"
  4. }
  5.  
  6. ord() {
  7. LC_CTYPE=C printf '%d' "'$1"
  8. }
Add Comment
Please, Sign In to add comment