Principes de base du script Shell # 2
Il existe trois définitions.
function <Nom de la fonction> ()
{
En traitement
}
#Définition de fonction sans parenthèses
function <Nom de la fonction>
{
En traitement
}
#Définition de fonction sans fonction
<Nom de la fonction> ()
{
En traitement
}
Voici un exemple simple. Le nom de la fonction est fonction1 et le processus affiche la date actuelle.
[wataru@localhost work]$ cat shellTest.sh
#!/bin/bash
function1 ()
{
date
}
function1
[wataru@localhost work]$ ./shellTest.sh
Fri Sep 25 16:46:29 PDT 2020
Recommended Posts