diff options
author | tv <tv@also> | 2011-07-22 15:25:04 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-07-22 15:25:04 +0200 |
commit | 31838ea631f7cb776d838c444cf581542c17aebc (patch) | |
tree | 81172d77a8bff948e91db4ed10ec8611d637dc37 | |
parent | b327e59bdaa58e8dd22078fa33c93bdd5c0de0a6 (diff) | |
parent | 87f1d03d8682a199d87f600792c5076cd1348d79 (diff) |
Merge branch 'toaster'
-rw-r--r-- | doc/cholerab | 1 | ||||
-rwxr-xr-x | infest/bin/make-patch | 4 | ||||
-rwxr-xr-x | util/bin/google.suggest | 8 |
3 files changed, 11 insertions, 2 deletions
diff --git a/doc/cholerab b/doc/cholerab new file mode 100644 index 00000000..2500ba6b --- /dev/null +++ b/doc/cholerab @@ -0,0 +1 @@ +see krebscode/cholerab diff --git a/infest/bin/make-patch b/infest/bin/make-patch index e2ef0ca0..1051c1aa 100755 --- a/infest/bin/make-patch +++ b/infest/bin/make-patch @@ -1,7 +1,7 @@ #! /bin/sh -t="`tempfile`" -p="`tempfile`" +t="`mktemp`" +p="`mktemp`" trap "test -e $t && rm $t; test -e $p && rm $p" EXIT INT f=/etc/passwd diff --git a/util/bin/google.suggest b/util/bin/google.suggest new file mode 100755 index 00000000..9bde17dc --- /dev/null +++ b/util/bin/google.suggest @@ -0,0 +1,8 @@ +#! /bin/sh + +uri="http://google.com/complete/search?output=json&q=$*" + +curl -sS "$uri" | sed -n ' + s:^window.google.ac.h(\|)$::gp +' +echo |