diff options
author | Mathias Bynens <mathias@qiwi.be> | 2011-12-27 16:39:21 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2011-12-27 16:39:21 +0100 |
commit | e3c4b0e821b41f5091d12c1fc1b235a9c9c710f4 (patch) | |
tree | 15f76266520849bb8ed5b8b0a0306aa47f51b80a | |
parent | eab8b0bea255effd7344e722202f8dfe53bf53aa (diff) | |
download | dotfiles-e3c4b0e821b41f5091d12c1fc1b235a9c9c710f4.tar.gz dotfiles-e3c4b0e821b41f5091d12c1fc1b235a9c9c710f4.tar.bz2 dotfiles-e3c4b0e821b41f5091d12c1fc1b235a9c9c710f4.zip |
Add `escape` function which escapes UTF-8 characters into their 3-byte format
Example:
$ escape "♥♡♥"
\xE2\x99\xA5\xE2\x99\xA1\xE2\x99\xA5
$ echo -e "\xE2\x99\xA5\xE2\x99\xA1\xE2\x99\xA5"
♥♡♥
-rw-r--r-- | .functions | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -9,6 +9,7 @@ function httpcompression() { encoding="$(curl -LIs -H 'User-Agent: Mozilla/5 Gecko' -H 'Accept-Encoding: gzip,deflate,compress,sdch' "$1" | grep '^Content-Encoding:')" && echo "$1 is encoded using ${encoding#* }" || echo "$1 is not using any encoding" } +# Syntax-highlight JSON files function json() { python -mjson.tool <<< "$*" | pygmentize -l javascript } @@ -16,4 +17,10 @@ function json() { # All the dig info function digga() { dig +nocmd "$1" any +multiline +noall +answer +} + +# Escape UTF-8 characters into their 3-byte format +function escape() { + printf "\\\x%s" $(printf "$@" | xxd -p -c1 -u) + echo # newline }
\ No newline at end of file |