script Bash Criar arquivo se não existir
#! /bin/bash
if [[ ! -e file.txt ]]; then
touch file.txt
fi
Vel
#! /bin/bash
if [[ ! -e file.txt ]]; then
touch file.txt
fi