Tyleo-Dev-ShellScripting-Ol.../SH/variablesonscene.sh
2024-02-18 22:29:57 +01:00

9 lines
209 B
Bash
Executable file

#!/bin/sh
# Examples of variables
FILENAME=1
ANIMAL=2
COCHONS=3
CECIESTUNEVARIABLE=4
echo "$FILENAME + $ANIMAL = $COCHONS"
echo "Si on ajoute $FILENAME à $COCHONS on obtient alors"
echo "$CECIESTUNEVARIABLE"