Créer un fichier s'il ne s'agit pas de bash
#! /bin/bash
if [[ ! -e file.txt ]]; then
touch file.txt
fi
Vel
#! /bin/bash
if [[ ! -e file.txt ]]; then
touch file.txt
fi