Bash Script Create File, если не существует

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