summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMutoShack <MutoShack@web>2019-03-19 16:23:31 +0100
committerGNU Hurd web pages engine <web-hurd@gnu.org>2019-03-19 16:23:31 +0100
commit5c7da990193e0f9e5e322f226090a4c123f15067 (patch)
tree16ea620e941479bec0c3ac34e4443224de27e405
parent97372ee296977f49212bb93434226d3cf7a0d71c (diff)
Change order of commands so that settrans -g is the *last* thing the user does
-rw-r--r--hurd/documentation/translator_primer.mdwn13
1 files changed, 6 insertions, 7 deletions
diff --git a/hurd/documentation/translator_primer.mdwn b/hurd/documentation/translator_primer.mdwn
index bbfb3649..103796fb 100644
--- a/hurd/documentation/translator_primer.mdwn
+++ b/hurd/documentation/translator_primer.mdwn
@@ -28,13 +28,11 @@ to enable you to easily try three of them:
To try out the simplest of translators, you can go the following simple steps:
$ touch hello
- $ cat hello
+ $ cat hello
$ settrans hello /hurd/hello
$ cat hello
"Hello World!"
- $ settrans -g hello
- $ cat hello
- $
+
$ fsysopts hello
/hurd/hello --contents='Hello World!
'
@@ -42,8 +40,9 @@ To try out the simplest of translators, you can go the following simple steps:
> '
$ cat hello
Hello GNU!
- $
-
+
+ $ settrans -g hello
+ $ cat hello
What you do with these steps is first verifying that the file "hello" is empty.
Then you setup the translator /hurd/hello in the file/node hello.
@@ -57,7 +56,7 @@ translator returns with another call to fsysopts.
To finish it,
you remove the translator from the file "hello"
(and tell any active running instances to go away)
-via "settrans -g hello".
+via "settrans --g hello", which is shorthand for "settrans --goaway hello"
Having done that, verify that now the file is empty again.
### Transparent FTP