Rechercher une page de manuel
random
Langue: en
Version: 146267 (fedora - 04/07/09)
Section: 1 (Commandes utilisateur)
Sommaire
NAME
random - generate random numberSynopsis
random [SEED]Description
The random command is used to generate a random number in the interval 0<=N<32767. If an argument is given, it is used to seed the random number generator. This can be useful for debugging purposes, where it can be desirable to get the same random number sequence multiple times. If the random number generator is called without first seeding it, the current time will be used as the seed.Example
The following code will count down from a random number to 1:for i in (seq (random) -1 1) echo $i sleep end
Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre