Crear archivo si no existe bash

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