diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-06-30 20:05:23 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-06-30 20:05:23 -0400 |
commit | e46a74fe8a143936eee2b9be1fd6b5f963357d9d (patch) | |
tree | 457e959fc8bcdf1222092a29435e468c824bb697 /bin | |
parent | 57266bea1b5fd82c6cc199c538783306c668b661 (diff) |
work on it
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cdxcat | 0 | ||||
-rw-r--r-- | bin/cdxcut | 0 | ||||
-rwxr-xr-x | bin/cdxget | 7 | ||||
-rwxr-xr-x | bin/urlkey2url | 8 |
4 files changed, 15 insertions, 0 deletions
diff --git a/bin/cdxcat b/bin/cdxcat new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/bin/cdxcat diff --git a/bin/cdxcut b/bin/cdxcut new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/bin/cdxcut diff --git a/bin/cdxget b/bin/cdxget new file mode 100755 index 0000000..a54612d --- /dev/null +++ b/bin/cdxget @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +url='http://web.archive.org/cdx/search/cdx?' +for arg in "$@"; do + url+="$s${arg%%=*}=$(printf '%s' "${arg#*=}"|urlencode)&" +done +curl -s "$url" diff --git a/bin/urlkey2url b/bin/urlkey2url new file mode 100755 index 0000000..5d0ec3d --- /dev/null +++ b/bin/urlkey2url @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +for arg in "$@"; do + keydomain="${arg%%)*}" + keypath="${arg#*)}" + domain="$(IFS=,; printf '%s\n' $keydomain|tac|xargs|tr ' ' '.')" + echo "$domain$keypath" +done |