blob: 0980ac6e082e04c7ad2afd166f1b6011b7e60f22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
Enterprise Patterns
==================
Stellt sicher, dass das richtige passiert, egal was gemacht wird
Enterprise Loop
---------------
Enterprise Exception Handling
-----------------------------
ggf ersetzbar durch enterprise loop.
Enterprise Installation
-----------------------
Rebooting
----------
Enterprise Einschalter (eon)
----------------------------
Device that turns something on as soon as possible.
Supernintendo Pattern
---------------------
Enterprise Root
---------------
scripts which need root access but are called with lower privileges. The Enterprise Root Pattern provides a Solution for this issue by calling the script itself as sudo.
<code>
if test "${nosudo-false}" != true -a `id -u` != 0; then
echo "we're going sudo..." >&2
exec sudo "$0" "$@"
exit 23 # go to hell
fi
</script> // enterprise ist, wenn <code> ... </script> trotzdem matcht
Enterprise Shutdown
------------------
Mittel der Wahl um einen Shutdown zu erzwingen
Bsp: das Not-Aus in der Maschinensicherheit
Enterprise Deep Copy
--------------------
Bsp: var copy = JSON.parse(JSON.stringify(source))
Enterprise Thinking
-------------------
Prozess um auf Enterprise Patterns zu kommen
Bug-Driven Development
---------------------
Source-based Documentation / Help
---------------------------------
<code>
#! /bin/sh
if echo "$*" | grep -q '\(^\| \)-h\( \|$\)'; then
cat "$0"
fi
# [more code]
</code>
Literate Programming
--------------------
Omit all the comments.
|