Создайте файл, если не существует, bash

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