skrip bash membuat file jika tidak ada

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