Curtis wrote:

> Here's what I have but i'm getting some errors
> 
> #!/bin/bash
> 
> 
> if ! (-e b.txt);

ITYM

if [ ! -e b.txt ]; then
...

Reply via email to