Buat file jika tidak ada bash

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