Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
unix_s
exécution d'une commande Unix ou DOS, pas de sortie
Séquence d'appel
unix_s(command-name)
Paramètres
- command-name
chaîne de caractères
Description
Envoie la chaîne command-name
à l'interpréteur de commande
(sh sous Unix, ou command.com sous DOS). La sortie standard et les erreurs ne sont pas reportées (redirection vers /dev/null sous Unix).
Notez que la *dernière erreur uniquement* est signalée quand command-name est une suite de commandes séparées par des ";". |
Exemples
if getos() == 'Windows' then unix_s("del foo"); else unix_s("rm -f foo"); end
Voir aussi
- edit — function editing
- manedit — editing a manual item
- unix_g — exécution d'une commande Unix ou DOS, sortie redirigée vers une variable
- unix_w — exécution d'une commande Unix ou DOS, sortie redirigée vers la fenêtre de Scilab
- unix_x — exécution d'une commande Unix ou DOS, sortie redirigée vers une fenêtre
- unix — exécution d'une commande Unix ou DOS
Report an issue | ||
<< unix_g | Entrées/Sorties | unix_w >> |