diff options
author | MutoShack <MutoShack@web> | 2019-03-19 16:36:46 +0100 |
---|---|---|
committer | GNU Hurd web pages engine <web-hurd@gnu.org> | 2019-03-19 16:36:46 +0100 |
commit | e29fb992cb60748149d9a2bba01d601b44410333 (patch) | |
tree | 59a4fa545daaeaf437a3cc78cff9bd9d093da4f6 /hurd | |
parent | 5c7da990193e0f9e5e322f226090a4c123f15067 (diff) |
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/documentation/translator_primer.mdwn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hurd/documentation/translator_primer.mdwn b/hurd/documentation/translator_primer.mdwn index 103796fb..35eab2fb 100644 --- a/hurd/documentation/translator_primer.mdwn +++ b/hurd/documentation/translator_primer.mdwn @@ -43,20 +43,20 @@ To try out the simplest of translators, you can go the following simple steps: $ settrans -g hello $ cat hello -What you do with these steps is first verifying that the file "hello" is empty. +What you do with these steps is first creating the file "hello" and verifying that it is empty. -Then you setup the translator /hurd/hello in the file/node hello. +Then you setup the translator `/hurd/hello` in the file/node `hello`. -After that you check the contents of the file, and the translator returns "Hello World!". +After that, you check the contents of the file, and the translator returns "Hello World!". Because you are a curious hacker, you wonder what filesystem options this node has. It turns out that the hello translator uses a "contents" option. We can change what the hello -translator returns with another call to fsysopts. +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", which is shorthand for "settrans --goaway 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 |