skrypt bash Utwórz plik, jeśli nie istnieje

#! /bin/bash 
if [[ ! -e file.txt ]]; then
    touch file.txt
fi
Vel