Curtis wrote:

> if [! -e b.txt];

Please note that should literally be

if [ ! -e b.txt ];

NOT

if [! -e b.txt];

Try running the latter and you'll get errors.

Reply via email to