File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,9 @@ echo 'We have a nonexistant hook?'
79
79
# @endif
80
80
```
81
81
82
+ Hit RETURN to continue (this is the wait directive).
83
+ <!-- @wait -->
84
+
82
85
### Assignments and functions
83
86
84
87
Let's try an assignment.
@@ -88,6 +91,14 @@ FOO="Hello world"
88
91
echo " $FOO "
89
92
```
90
93
94
+ ` export ` ed assignments work too. (The word ` export ` itself is a noop in
95
+ ` demosh ` , to be clear: variables are always exported.)
96
+
97
+ ``` bash
98
+ export BAR=" Exported hello world"
99
+ echo " $BAR "
100
+ ```
101
+
91
102
The ` $SHELL ` environment variable should be overwritten to be ` demosh ` itself.
92
103
93
104
``` bash
@@ -117,6 +128,13 @@ hello "world"
117
128
hello2 " world"
118
129
```
119
130
131
+ Assignments persist across blocks, of course.
132
+
133
+ ``` bash
134
+ echo $FOO
135
+ echo $BAR
136
+ ```
137
+
120
138
### ` cd `
121
139
122
140
` cd ` is handled internally, because it has to be.
Original file line number Diff line number Diff line change @@ -38,10 +38,19 @@ echo "We have a browser hook!"
38
38
echo ' We have a nonexistant hook?'
39
39
# @endif
40
40
41
+ # # Hit RETURN to continue (this is the wait directive).
42
+ # @wait
43
+
41
44
# Let's try an assignment.
42
45
FOO=" Hello world"
43
46
echo " $FOO "
44
47
48
+ # exported assignments work too. (The word export itself is a noop in demosh,
49
+ # to be clear: variables are always exported.)
50
+
51
+ export BAR=" Exported hello world"
52
+ echo " $BAR "
53
+
45
54
# The $SHELL environment variable should be overwritten to be demosh itself.
46
55
echo " SHELL is $SHELL "
47
56
@@ -59,6 +68,11 @@ hello2 () {
59
68
hello " world"
60
69
hello2 " world"
61
70
71
+ # Assignments persist across blocks, of course.
72
+
73
+ echo $FOO
74
+ echo $BAR
75
+
62
76
# cd is handled internally, so this should work.
63
77
cd /tmp
64
78
pwd
You can’t perform that action at this time.
0 commit comments