Translations:Including a command within the wiki/3/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
== Inclure un ensemble de commandes ==
== Inclure un ensemble de commandes ==
Vous pouvez utiliser le gabarit <nowiki>{{Commandes}}</nowiki> pour inclure un ensemble de commandes. Inscrivez alors chaque commande sur une seule ligne, précédée du caractère '''|'''. Par exemple,
Vous pouvez utiliser le gabarit <nowiki>{{Commands}}</nowiki> pour inclure un ensemble de commandes. Inscrivez alors chaque commande sur une seule ligne, précédée du caractère '''|'''. Par exemple,
<syntaxhighlight lang=text>
<syntaxhighlight lang=text>
{{Commands
{{Commands

Latest revision as of 17:55, 15 February 2019

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Including a command within the wiki)
== Including a set of commands ==
You can use the <nowiki>{{Commands}}</nowiki> template to include a set of commands. You may then write each command on a separate line, and prepend the '''|''' character in front of each command. For example, the code
<syntaxhighlight lang=text>
{{Commands
|cd src
|make
|make install
|cd ..
}}
</syntaxhighlight>
results in:
{{Commands
|cd src
|make
|make install
|cd ..
}}

Inclure un ensemble de commandes

Vous pouvez utiliser le gabarit {{Commands}} pour inclure un ensemble de commandes. Inscrivez alors chaque commande sur une seule ligne, précédée du caractère |. Par exemple,

{{Commands
|cd src
|make
|make install
|cd ..
}}

produit le résultat :

[name@server ~]$ cd src
[name@server ~]$ make
[name@server ~]$ make install
[name@server ~]$ cd ..