Bastienab
2/27/2019 - 10:18 AM

Introduction au shell

Introduction au shell

#!/bin/bash
if [ $1 ]
then 
    echo "Bonjour $1"
else 
    echo "Bonjour $(whoami)"
fi