From 37f71db1a7c2cea30eae886d6b58a23eef2da7bc Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 15 Jan 2011 14:39:34 +0100 Subject: [PATCH] add ideas for implementation of explorer Signed-off-by: Nico Schottelius --- doc/internal/explorer-ideas | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 doc/internal/explorer-ideas diff --git a/doc/internal/explorer-ideas b/doc/internal/explorer-ideas new file mode 100644 index 00000000..9006b66f --- /dev/null +++ b/doc/internal/explorer-ideas @@ -0,0 +1,12 @@ +1) safer and fast version + cat blob | ssh host > tmp; + for var in ... + var=grep ^var= tmp +2) slow & secure + for var in ... + eval var=$(cat single_blob | ssh host" + +3) easy & insecure + cat blob | ssh host > tmp; . tmp + +