Commit 0123592959be717e6bfc5e0901bd426a19724f4e

Authored by root
1 parent ca9d81250b
Exists in master

bcac640d-aa91-4ce8-a181-25d76168e234

Showing 1 changed file with 12 additions and 0 deletions

... ... @@ -163,4 +163,16 @@
163 163 ```
164 164  
165 165 Le fichier peut également être inclu dans le fichier **~/.bashrc** (de la même manière) afin de disposer de toutes ces fonctions directement dans le prompt.
  166 +
  167 +Exemple
  168 +---
  169 +
  170 +```sh
  171 +$ is_numeric azerty ; echo $?
  172 +1
  173 +$ is_numeric ee55ee ; echo $?
  174 +1
  175 +$ is_numeric 65465484 ; echo $?
  176 +0
  177 +```