aboutsummaryrefslogtreecommitdiffstats
path: root/.functions
diff options
context:
space:
mode:
Diffstat (limited to '.functions')
-rw-r--r--.functions5
1 files changed, 0 insertions, 5 deletions
diff --git a/.functions b/.functions
index f1c94e6..5cea08b 100644
--- a/.functions
+++ b/.functions
@@ -66,11 +66,6 @@ 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"
}
-# Gzip-enabled `curl`
-function gurl() {
- curl -sH "Accept-Encoding: gzip" "$@" | gunzip
-}
-
# Syntax-highlight JSON strings or files
# Usage: `json '{"foo":42}'` or `echo '{"foo":42}' | json`
function json() {