diff options
author | makefu <github@syntax-fehler.de> | 2012-12-07 23:06:17 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2012-12-07 23:06:17 +0100 |
commit | 253f0a908b190f0ff6d2f71023d050c088533c02 (patch) | |
tree | 70416e998512a34ff520e1244fa3645077f0198b | |
parent | 7e5a88e4681ec39b109db9aee13fe3d07251f11c (diff) |
pattern/README -> ENTERPRISE_PATTERN
add to pattern : 'litterate programming' and 'Enterprise Expect'
-rw-r--r-- | cholerab/ENTERPRISE_PATTERN (renamed from cholerab/pattern/README) | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cholerab/pattern/README b/cholerab/ENTERPRISE_PATTERN index 0980ac6e..4e417709 100644 --- a/cholerab/pattern/README +++ b/cholerab/ENTERPRISE_PATTERN @@ -65,4 +65,20 @@ Literate Programming -------------------- Omit all the comments. +Litterate Programming +--------------------- +Write throw-away code and it will become production code + +Enterprise Expect +----------------- +Because you always know what you want, `expect(3)` script code can be replaced +by a `subshell and pipe` pattern : + +<code> + ( echo "$username"; sleep 1; echo "$password"; sleep 1; echo "cp old new" ) | telnet +</code> + +painload example: `//retiolum/bin/announce_pubkey` + + |